score:1
You can render triangles by using Highcharts.SVGRenderer
.
API Reference: https://api.highcharts.com/class-reference/Highcharts.SVGRenderer
But I think the easiest option will be using a scatter series with triangle markers to achive this. Check the following config and demo:
{
type: 'scatter',
showInLegend: false,
enableMouseTracking: false,
marker: {
symbol: 'triangle-down',
fillColor: 'rgb(124, 181, 236)',
radius: 9
},
states: {
inactive: {
opacity: 1,
},
},
data: [{
x: 9,
y: -1.3
},
{
x: 10,
y: -8.7
},
{
x: 11,
y: -9.0
}
]
}
Source: stackoverflow.com
Related Query
- Highchart - Column range as arrows
- Convert and Sort Data for HighChart Column Range Representation
- Highchart multiple column range in same series on bar chart
- Column based Highchart drilldown series assign color code to each column
- How to set a 24h range on the y-axis of a column highchart
- Highchart column range with hour
- Highchart area range on a plot column
- How to create a column range chart in Highcharts using range and navigator functions?
- Highchart specific width stack column bar graph
- Highchart Area Range chart with gradient that follows the line
- How to apply borderRadius only for top side of Column or Bar in Highchart
- Highcharts column range change color for negative numbers
- How to know information about the clicked bar in highchart column r shiny plot
- Setting variable column size in bar highchart (Rshiny)
- Highchart Stacked Column w/ Datetime X-axis Columns Too Thin
- HighCharts stacked column range
- High chart - Column Range Chart with Time range. How to get tooltip as Start and End time
- How to add a background image (pattern) to highchart column graph?
- Customize Stacked column chart in highChart
- Fire click event on a highchart column drilldown chart on clicking x axis for drill down reports
- How to Change Highchart Column Color Dynamicly
- hide a particular column on xAxis highchart Column Chart
- some of dataLabels not showing in stacked column Highchart
- how to exclude last column from highchart from table
- trying to dynamically update Highchart column chart but series undefined
- Highchart / Highstock stack column chart show one series's tooltip at a time
- how to change color of line chart in highchart based on a categorical column in r?
- How to set border in column chart - Highchart
- how to dynamically change column chart to mirror chart using highchart
- Nothing displayed in Highchart Column
More Query from same tag
- Remove extra chart area on Highcharts Gantt chart
- Navigator showing at 1970 when first point is null
- Highchart multiple series with csv
- How to make highcharts display date in hh:mm:ss format, not as timestamp?
- Prevent Absolute positioned Div from overlapping
- how to render angular directive in Highcharts tool tip in Angular8
- Highcharts bar: height by xAxis
- Problems implementing synchronized plotline and tooltips for highcharts
- Highcharts large data set clustering
- Highcharts graph shows 265 series and no data after update to categories and series
- Display only groups in Highcharter
- How to hardcode arbitrary Tick text labels on y axis in highcharts
- Automated y-axis-title-offset in Highcharts possible when having varying length of y-axis title?
- Rails generates chart for .each do |x| using highcharts or any other chart API
- Label hover function in highchart
- Highcharts: Is it possible to have separate plotOptions for each series?
- Highstock: Property 'firePointEvent' of object #<Object> is not a function
- How to fade other yAxises in highchart when hover on marker?
- R Highcharter - highlight same group in multiple stacked columns chart + order groups in columns
- highcharts data labels overlaps the plotlines value
- Highcharts/HighcharteR Tooltip: access all y-values within a series, print the difference
- X-axis range changes based on hidden Series
- Auto-refresh Json data in Highcharts
- Receiving NaN error when running javascript function
- HighCharts pie chart X-axies values are not displayed while trying to get data from MySQL database using PHP
- Explain Highcharts different Instantiations
- Is there a pie chart slice hover event in Highcharts?
- react-highcharts: Cannot set property 'HighchartsAdapter' of undefined
- Highchart basic chart using nodejs
- Highcharts - how to properly update series[0].data and yAxis title of a VUMeter?