我正在使用3D列Highcharts,它不显示数据标签,在2D中可以,但3D则不行。 png下载显示datalabels也很奇怪。
// Set up the chart
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
type: 'column',
options3d: {
enabled: true,
alpha: 15,
beta: 15,
depth: 50,
viewDistance: 25
}
},
title: {
text: 'Chart rotation demo'
},
subtitle: {
text: 'Test options by dragging the sliders below'
},
plotOptions: {
column: {
depth: 25
},
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4],
dataLabels: {
enabled: true
}
}],
});
我希望数据标签可以显示在列顶部,需要帮助,非常感谢!
答案 0 :(得分:0)
不确定您是否注意到它,但是升级到V7.2.1将解决此问题。