Highcharts: Dynamically change single column width to highlight one sample

后端 未结 2 892
悲哀的现实
悲哀的现实 2020-12-21 09:13

In a Highcharts column chart we\'d like to highlight one value/sample by drawing its column a little bit wider... But this seems not to be possible, is it?

poi

2条回答
  •  离开以前
    2020-12-21 09:24

    You can also use data attribute and modify width.

    http://jsfiddle.net/cDvmy/2/

     chart.series[0].data[0].graphic.attr({
                width:50
            });
    

提交回复
热议问题