我想使用从数据库检索的一组数据来创建饼图。

我发现FLot和Graphael都不错,但是我没有找到任何初学者教程。

如何开始在代码中添加饼图?

有任何初学者教程吗?

最佳答案

尝试bluff charts

饼图示例:-

function pieChartExample(){
  //Create pie chart
  var bluffGraph = new Bluff.Pie('bluffExample', 400);
  //Use keynote theme. Several other themes can be used
  bluffGraph.theme_keynote();
  bluffGraph.title = 'Pass Vs Fail';

  bluffGraph.data('Pass',75,'green');
  bluffGraph.data('Fail',25,'red');

  bluffGraph.draw();
}

关于javascript - javascript中的饼图?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5577157/

10-12 13:13