1
我正在使用JQplot餅圖。我需要標籤出現在圖表之外。我怎樣才能做到這一點?標記JQplot餅圖
我正在使用JQplot餅圖。我需要標籤出現在圖表之外。我怎樣才能做到這一點?標記JQplot餅圖
如果您指的是數據標籤,則需要將dataLabelPositionFactor
設置爲大於1.0
的適當值,然後完成。
要做到這一點宥需要指定位置propertie:
legend: {
show:true; placement: "outsideGrid"
}
例子:
$.jqplot('YOUR_DIV_ID', [['LABEL_1',2],['LABEL_2',232],['LABEL_3',22], {
seriesDefaults: {
// Make this a pie chart.
renderer: jQuery.jqplot.PieRenderer,
rendererOptions: {
// Put data labels on the pie slices.
// By default, labels show the percentage of the slice.
showDataLabels: true
}
},
//Make legend visibile, outside the chart
legend: {
show:true, placement: "outsideGrid"
}
}
);