我正在使用具有动态生成的数据和绘图名称的highcharts。 (通常在4到8个数据点之间,但是会有2个数字较小的数据点。)
其中一些有点长,导致饼图很小,所以我设置了绘图选项的样式宽度,以强制它们包裹并跨越多行。
然而,在我的某些图表中,标签重叠,并且不知道如何修复它。
有没有人有任何想法?
http://jsfiddle.net/d600burton/TkPBq/
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
plotBackgroundColor: null,
plotBorderWidth: 1,
plotShadow: false
},
subtitle: {
text: 'Drag the handle in the lower right to resize'
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage:.2f}%</b>'
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
minSize: 1,
dataLabels: {
style: {
width: '100px'
},
enabled: true,
color: '#000000',
format: '<b>{point.name}</b>: {percentage:.2f} %'
}
}
},
series: [{
type: 'pie',
name: 'Browser share',
data: [
{name: "On Hire", y: 2884},
{name: "Collection Note", y: 674},
{name: "Off Hire Not Confirmed", y: 23},
{name: "Goods In", y: 41}
]
}]
});
答案 0 :(得分:0)
连接器和数据表是相同生成的,因此如果设置为小型,连接器不会“移动”。换句话说,我建议考虑宽度修改。