0
http://jsfiddle.net/6kjuf1aa/增加空間
Highcharts.chart('container', {
chart: {
width: 458,
height: 98
},
title: {
text: ""
},
legend: {
align: 'center',
verticalAlign: 'middle',
layout: 'vertical'
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
},
plotOptions: {
pie: {
startAngle: 0,
endAngle: 360,
center: ['10%', '80%']
}
},
series: [{
type: 'pie',
name: 'hi',
innerSize: '75%',
data: [
{
y: 23,
name :"abc"
},
{
y: 23,
name :"abc"
},
{
y: 23,
name :"abc"
}
,
{
y: 23,
name :"abc"
},
{
y: 23,
name :"abc"
},
{
y: 23,
name :"abc"
}
],
showInLegend: true
}]
});
是否有移動的導航欄底部,並給出了傳說更多空間的方式,這樣可以顯示更多的圖例項 我如何做到這一點?
我想通過移動導航欄
你也可以減少itemStyle.fontSize,itemMarginTop和itemMarginBottom:http://jsfiddle.net/6m3arcs5/。 –