私はこのようなハイチャートを持っています。凡例( Firefox、IE、chrome ...)をグラフの右側
に移動するにはどうすればよいですか?
PS私はjQueryに精通していません。
私はこのようなハイチャートを持っています。凡例( Firefox、IE、chrome ...)をグラフの右側
に移動するにはどうすればよいですか?
PS私はjQueryに精通していません。
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.
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
},
これを試してlegend: { align: 'right' }
、凡例を右側に揃えることができます