hightchart的3d饼状图图例显示问题记录
Posted 友人A
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hightchart的3d饼状图图例显示问题记录相关的知识,希望对你有一定的参考价值。
3d饼状图不显示图例,需要在plotOptions.pie.showInLegend设置为true
var chart = Highcharts.chart(\'container\', {
chart: {
type: \'pie\',
options3d: {
enabled: true,
alpha: 45,
beta: 0
}
},
title: {
text: \'\'
},
legend:{
align: \'left\',
verticalAlign:\'top\',
x: 0,
y: 100
},
tooltip: {
pointFormat: \'{series.name}: <b>{point.percentage:.1f}%</b>\'
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: \'pointer\',
showInLegend: true,
depth: 35,
dataLabels: {
enabled: true,
format: \'{point.name}\'
}
}
},
series: [{
type: \'pie\',
name: \'浏览器占比\',
data: [
[\'Firefox\', 45.0],
[\'IE\', 26.8],
[\'Safari\', 8.5],
[\'Opera\', 6.2],
[\'Others\', 0.7]
]
}]
});
以上是关于hightchart的3d饼状图图例显示问题记录的主要内容,如果未能解决你的问题,请参考以下文章