I am looking for chart like this in highcharts. Can any one help to find chart like this. I really needed but I am not able to make similar chart of my own in highcharts.
UPDATE:
I got this one in the internet.
I am looking for chart like this in highcharts. Can any one help to find chart like this. I really needed but I am not able to make similar chart of my own in highcharts.
UPDATE:
I got this one in the internet.
Check how to customize legend
legend: {
align: 'right',
verticalAlign: 'top',
layout: 'vertical',
x: 0,
y: 100, //distance from top
padding: 3,
itemMarginTop: 5,
itemMarginBottom: 5,
useHTML: true, //now you can customize label with various kind of styling
labelFormatter: function() {
return '<div style="width:100px;"><span style="float:left; margin-left:10px">' + names[this.index - 1] + '</span><span style="float:right">' + values[this.index - 1] + '</span></div>';
},
symbolRadius: 0, //square symbols
},