在highcharts中,是否可以在两列中垂直堆叠显示图例?
我正在努力找出显示图例项目的最佳方式,此时我们将图例项目全部堆叠在一起。
图表上最多有4个系列。
我不确定如何处理这个问题,我看到了useHTML的选项,但我似乎找不到任何关于如何处理HTML的例子。
http://jsbin.com/oyicuc/9/edit
任何建议都会非常有用,谢谢。
答案 0 :(得分:14)
您是否尝试过使用itemWidth参数?
请看看
http://jsfiddle.net/B9L2b/1266/
legend: {
width: 200,
itemWidth: 100
},
http://api.highcharts.com/highcharts#legend.itemWidth
编辑:
width:600,
itemWidth:300,
itemStyle: {
width:280
}
答案 1 :(得分:1)
function renderElements() {
if (this.legend) {
this.legend.destroy();
}
//distance between 2 elements
let itemDistance = this.legend.options.itemDistance;
//the biggest element
let maxItemWidth = this.legend.maxItemWidth;
//make the width of the legend in the size of 2 largest elements +
//distance
let nextLegendWidth = (maxItemWidth * 2) + itemDistance;
//container width
let boxWidth = this.plotBox.width;
//if the length of the 2 largest elements + the distance between them
//is less than the width of container, we make 1 row, else
//set legend width 2 max elements + distance between
if (boxWidth < nextLegendWidth) {
this.legend.options.width = maxItemWidth;
} else {
this.legend.options.width = nextLegendWidth;
}
this.render()
}
chart: {
events: {
load: renderElements,
redraw: renderElements
}
}
答案 2 :(得分:0)
也许您可以使用图例的“labelFormater”。
http://api.highcharts.com/highcharts#legend.labelFormatter
然后你可以创建一个表格并在你wnat时安排图例文字。
查看文档页面上的示例。