highstock - How to align highcharts legend to bottom right? -


i'm trying align legend @ bottom right in highstock. used work until forced upgrade highstock 1.3.4.

the problem navigator covering legend. not ideal:

http://jsfiddle.net/sy8de/

i'm aligning legend follows:

$(function () { $('#container').highcharts('stockchart', {      chart: {     },      legend: {         enabled: true,         floating: true,         verticalalign: 'bottom',         align: 'right'     },      rangeselector: {         selected: 1     },      series: [{         name: 'usd eur',         data: usdeur     }] }); }); 

how can navigator not cover legend?

in addition specifying alignment of legend, can offset using x , y offsets. instance, in case move down bit this:

 legend: {         enabled: true,         floating: true,         verticalalign: 'bottom',         align:'right',         y:40     }, 

http://jsfiddle.net/kqvnj/

the other legend options specified here: http://api.highcharts.com/highcharts#legend.y


Comments

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -