我在highcharts中创建一个饼图。
有人知道如何在两行中设置数据标签吗?
当数据标签太长时,我发现了这个问题。
http://jsfiddle.net/larrytron/fSjnD/
$(function () {
$('#container').highcharts({
chart: {
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false
},
title: {
text: 'Browser market shares at a specific website, 2010'
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
color: '#000000',
maxStaggerLines:1,
connectorColor: '#000000',
format: '<b>{point.name}</b>: {point.percentage:.1f} %'
},
}
},
series: [{
type: 'pie',
name: 'Browser share',
data: [
['Firefox jandler glander gramenauer gramen', 45.0],
['IE', 26.8],
{
name: 'Chrome',
y: 12.8,
sliced: true,
selected: true
},
['Safari', 8.5],
['Opera', 6.2],
['Others', 0.7]
]
}]
});
});
答案 0 :(得分:20)
您只需设置dataLabels的宽度,请参阅:http://jsfiddle.net/Fusher/fSjnD/1/
style: {
width: '100px'
}
答案 1 :(得分:6)
您只需在数据标签中插入
<:
data: [
['Firefox jandler glander <br><b>gramenauer gramen</b>', 45.0],
请注意,出于某种原因,第二行会丢失粗体格式,除非您使用标记添加回来。