因此,我很难弄清楚如何设置饼图/图例位置的布局。我希望图例与左边对齐,而饼图与右边对齐。 40/60百分比-ish。
像这样:
chart = new Highcharts.Chart({
chart: {
renderTo: 'chart',
type: 'pie',
},
credits: {
enabled: false
},
title: {
text : '',
},
plotOptions: {
pie: {
shadow: false,
borderWidth: 0
}
},
tooltip: {
enabled: false
},
series: [{
data: [
{
name: "first",
y: 23
},
{
name: "second",
y: 8
},
{
name: "third",
y: 11
},
{
name: "fourth",
y: 11
},
{
name: "fifth",
y: 47
}
],
size: '100%',
innerSize: '67%',
showInLegend: true,
dataLabels: {
enabled: false
}
}]
})
答案 0 :(得分:11)
如API所述,如何将legend
添加到图表选项中呢?
legend: {
align: 'left',
layout: 'vertical',
verticalAlign: 'top',
x: 40,
y: 0
}
呈现:
其余的你可以使用CSS样式