【发布时间】:2017-09-11 11:01:46
【问题描述】:
我正在使用 highcarts 将标签添加到饼图的中心。我正在使用标签配置选项,但我想在它的开头添加一个标签:
我尝试了多种方法,包括 labelFormatter,但似乎没有任何效果。目前我的代码是:
labels: {
items: [{
useHTML: true, // Using HTML for label
//html: "Transactions",
html: '<img src="https://github.com/tobi-ajala/shell-exercise/blob/master/icons/card.png?raw=true"/>' + "Transactions", // Doesn't work!
style: {
fontFamily: 'Arial,Roboto,Helvetica,sans-serif',
fontWeight: 'bold',
fontSize: 14,
verticalAlign: 'middle',
top: 140,
left: 460
}
}]
},
请在此处查看 JS Fiddle:http://jsfiddle.net/tobitobetoby/1fqvzpdn/22/
【问题讨论】:
标签: javascript html highcharts