目前,图例将文本对齐到左侧。 I.e( - 表示项目标签,在大多数情况下只是不同的颜色。
___________________
[-- Legend item 2 ]
[-- Legend item 3 ]
[-- Legend item 244 ]
我希望它能像它这样做
___________________
[-- Legend item 2 ]
[-- Legend item 3 ]
[-- Legend item 244 ]
我尝试使用itemStyle:textAlign:' right'但没有运气。这甚至可能吗?
答案 0 :(得分:3)
您可以设置useHTML然后定义width和text-align:
.highcharts-legend-item span {
width:70px!important;
text-align:right!important;
}