我正在制作高级图表,我对传奇有疑问。我在饼图的图例中有4列,需要为每个列添加标题。我正在使用以下代码,结果如下。
useHTML: true,
labelFormatter: function () {
return '<div style="width:800px"><span style="float:left;width:200px">' + this.name + '</span><span>'
+ this.description + '</span><span style="float:right;width:100px">' + this.target + '</span><span style="float:right;width:100px">' + Highcharts.numberFormat(this.y, 0) + '%</span></div>';
}
答案 0 :(得分:1)
您可以禁用图例格式化程序,然后准备自己的HTML图例,创建所需的样式。简单HTML图例的示例:
$legend = $('#customLegend');
$.each(chart.series[0].data, function (j, data) {
$legend.append('<div class="item"><div class="symbol" style="background-color:'+data.color+'"></div><div class="serieName" id="">' + data.name + '</div></div>');
});
$('#customLegend .item').click(function(){
var inx = $(this).index(),
point = chart.series[0].data[inx];
if(point.visible)
point.setVisible(false);
else
point.setVisible(true);
});