我使用Highcharts在我的项目中可视化3D图表。我特别感兴趣的是展示像this这样的3D散点图。在图表下方,您可以看到各个选项以及相应的jsFiddle。
是否有可能始终显示每个点的名称的标签,即不需要悬停?
谢谢!
发布于 2017-02-03 18:56:15
在该系列中,您可以像这样启用datalabels:
series: [{
dataLabels: {
enabled: true,
},
}]http://jsfiddle.net/oghokm8w/1/
然后,您可以使用格式化程序定制要显示的文本:
series: [{
dataLabels: {
enabled: true,
formatter: function () {
return this.point.x;
},
}
}]https://stackoverflow.com/questions/42022459
复制相似问题