Reputation: 644
I want to change the legend Symbol in column chart and make a legend Symbol like spline. I've seen the document => legend.
As I've seen I can change the legend width and some other features like CSS designing but how can I change the symbol?
change to
Please help...
Thanks
Upvotes: 2
Views: 8313
Reputation: 108512
I don't believe the Highchart's API offers the ability to customize the legend symbol with a bar chart. You can, however, modify the symbol after the chart is drawn.
chart: {
type: 'column',
events: {
load: function(event) {
// modify the legend symbol from a rect to a line
$('.highcharts-legend-item rect').attr('height', '2').attr('y', '10');
}
}
},
Fiddle here.
Upvotes: 2
Reputation: 1
Remove Legend symbol
chart: {
type: 'column',
events: {
load: function(event) {
// modify the legend symbol from a rect to a line
$('.highcharts-legend-item rect').attr('r', '0');
}
}
},
Upvotes: 0