gpt4 book ai didi

Highcharts:在图表上叠加标签

转载 作者:行者123 更新时间:2023-12-04 05:11:43 25 4
gpt4 key购买 nike

我想在图表上覆盖一个自定义图层(例如评论、作者)。阅读API似乎已经an object for the purpose :

A HTML label that can be positioined anywhere in the chart area.



我尝试在其中一个示例图表上使用它,但它没有效果(见下文),尽管解释器没有发出任何错误。我做错了什么还是应该以其他方式创建这种标签?

谢谢。
    chart = new Highcharts.Chart({
chart: {
renderTo: 'pie-container',
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false
},
title: {
text: 'Browser market shares at a specific website, 2010'
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage}%',
percentageDecimals: 1
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
color: '#FFFFFF',
connectorColor: '#FFFFFF',
formatter: function() {
return '<b>'+ this.point.name +'</b>: '+ this.percentage +' %';
}
}
}
},
series: [{
type: 'pie',
name: 'Browser share',
data: [
['Firefox', 45.0],
['IE', 26.8],
{
name: 'Chrome',
y: 12.8,
sliced: true,
selected: true
},
['Safari', 8.5],
['Opera', 6.2],
['Others', 0.7]
]
}],
labels: [
{html: "<b>This is a label!</b>",
style: {
left: '100px',
top: '100px',
width: '50px'}}],
});
});
});

最佳答案

labels应该是一个对象。
然后你必须将每个标签添加为 items 的一个元素.

labels: {
items: [{
html: "<b>This is a label!</b>",
style: {
left: '100px',
top: '100px',
width: '50px'
}
}]
}

Demo

关于Highcharts:在图表上叠加标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14841565/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com