動的に生成されたデータとプロット名でハイチャートを使用しています。(通常は 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}
]
}]
});