答案 0 :(得分:1)
检查如何自定义legend
legend: {
align: 'right',
verticalAlign: 'top',
layout: 'vertical',
x: 0,
y: 100, //distance from top
padding: 3,
itemMarginTop: 5,
itemMarginBottom: 5,
useHTML: true, //now you can customize label with various kind of styling
labelFormatter: function() {
return '<div style="width:100px;"><span style="float:left; margin-left:10px">' + names[this.index - 1] + '</span><span style="float:right">' + values[this.index - 1] + '</span></div>';
},
symbolRadius: 0, //square symbols
},