有没有办法在表格内创建 Highcharts 图例?我希望能够为我的 Highcharts 饼图的图例背景设置样式,并为每个元素和自定义边框交替使用背景颜色。
我已经像这样格式化了我的图例,但无法弄清楚如何将它嵌入到我可以格式化的表格中。
legend: {
layout: 'vertical',
align: 'center',
verticalAlign: 'bottom',
backgroundColor: '#f3f3f3',
borderWidth: 0,
useHTML: true,
itemMarginBottom: 10,
labelFormatter: function () {
return '<div style="width:200px"><span style="float:left">' + this.name + '</span><span style="float:right">' + this.percentage.toFixed(0) + '%</span><span style="float:right; margin-right:15%">$' + Highcharts.numberFormat(this.y, 0) + '</span></div>';
}
},
JS 小提琴:http: //jsfiddle.net/hAnCr/135/
任何帮助,将不胜感激。谢谢!