1

私はこのようなハイチャートを持っています。凡例( Firefox、IE、chrome ...)をグラフの右側
に移動するにはどうすればよいですか?

PS私はjQueryに精通していません。

4

3 に答える 3

3

You need to set the legend.align option to 'right'

  legend: {
            layout: 'vertical',
            align: 'right',
            verticalAlign: 'bottom',
            x: 0,
            y: -10
          },  

Here is the demo. I just tweaked it with the above mentioned code.

I Hope Highcharts API would be of great help to you, to explore the options available to personalize your charts.

于 2012-11-20T13:33:09.847 に答える
0

Have a look at this jsfiddle, it aligns the legend on the right side.

The following have been added:

legend: {
    width:180, align: 'right',  
    itemWidth: 180, verticalAlign: 'middle',
    x: 0,
    y: 0
},
于 2012-11-20T13:32:52.720 に答える
0

これを試してlegend: { align: 'right' }、凡例を右側に揃えることができます

于 2012-11-20T13:27:06.130 に答える