用饼图显示值

时间:2013-09-18 06:19:51

标签: jquery charts jqplot

我正在为图表使用jqplot插件。我创建了饼图,但我希望显示与下图中的显示相同的值。

enter image description here

这个选项吗?感谢。

1 个答案:

答案 0 :(得分:0)

试试这个:

$("#chartId").bind('jqplotDataHighlight', function(ev, seriesIndex, pointIndex, data) {

}); 

$("#chartId").bind('jqplotDataUnhighlight', function(ev, seriesIndex, pointIndex, data) {

});

参考 Link , 的 Link2

还可以 try