我正在使用 JQplot 饼图。我需要标签出现在图表之外。我怎样才能做到这一点?
问问题
2898 次
2 回答
3
如果您的意思是数据标签,那么您需要将 设置为dataLabelPositionFactor
大于的适当值,1.0
然后您就完成了。
于 2012-08-01T13:14:49.330 回答
0
为此,您需要指定放置属性:
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"
}
}
);
于 2013-06-13T12:59:17.783 回答