Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Highcharts - Legend Positioning outside the chart

Consider I have highchart like this highchart with legend inside

I want legend outside the chart. Please help.

NOTE: I want my legend properties to be the same.

legend{
    layout: 'vertical',
    align: 'right',
    verticalAlign: 'middle'
}

However I want them outside the chart. Please help.

like image 482
ramya Avatar asked Apr 08 '15 08:04

ramya


1 Answers

it seems like you need to set 'floating: false' http://jsfiddle.net/hx86zhob/1/

legend{
    layout: 'vertical',
    align: 'right',
    verticalAlign: 'middle',
    floating: false
}
like image 99
Asgu Avatar answered Nov 18 '22 12:11

Asgu