Display bar as an arrow with Highcharts
问题 Is it possible to draw a column bar chart with Highcharts.js, where one bar is displayed as an arrow? I have following chart $(function () { $('#container').highcharts({ chart: { type: 'column' }, title: { text: 'Title' }, xAxis: { categories: [ '2016', '2017', '2018' ] }, yAxis: [{ min: 0, title: { text: 'Header' } }, { title: { text: '' }, opposite: true }], legend: { shadow: false }, tooltip: { shared: true }, plotOptions: { column: { grouping: false, shadow: false, borderWidth: 0, } },