带jQuery和D3.js 环形(圆环)动画图表插件

  • 源码大小:14.09KB
  • 所需积分:1积分
  • 源码编号:19JP-3785
  • 浏览次数:950次
  • 最后更新:2023年07月22日
  • 所属栏目:图表
本站默认解压密码:19jp.com 或 19jp_com

简介

我们以前都看过甜甜圈图。它们是以循环格式可视化数据的好方法。

在本文中,我们将向您展示如何使用donutgraph.js jQuery插件创建动画圆环图(也称为环形图)。

这个插件使用简单,建立在jQuery和D3.js之上。它为您的图表添加了一个有趣的互动元素,让用户保持参与。

我们还将分享一些如何让你的甜甜圈图看起来更专业的技巧。

所以,如果你正在寻找一种很酷的方式来激活你的数据可视化项目,一定要看看这篇文章!

如何使用它:

1.在文档中加载所需的jQuery库和d3.js库。

  1. <script src="/path/to/cdn/jquery.min.js"></script>
  2. <script src="/path/to/cdn/d3.min.js"></script>

2.在jQuery之后加载jQuery donutgraph.js插件。

  1. <script src="plugin.min.js"></script>

3.创建一个空的DIV容器来容纳甜甜圈图。

  1. <div id="graph"></div>

4.准备好要在甜甜圈图中显示的数据。

  1. var sampleData = [
  2. {
  3. id: 1,
  4. label: "jQuery",
  5. value: 13.5,
  6. color: "#80c441"
  7. },
  8. {
  9. id: 2,
  10. label: "Script",
  11. value: 13.5,
  12. color: "#80c441"
  13. },
  14. {
  15. id: 3,
  16. label: "Net",
  17. value: 13.5,
  18. color: "#80c441"
  19. }
  20. // ...
  21. ]

5.调用该函数以生成默认的圆环图。

  1. $("#graph").donutgraph({
  2. data: sampleData
  3. });

6.这些是所有可用的设置,可以与donutgraph插件一起调用。

  1. $("#graph").donutgraph({
  2.  
  3. // wrapper element
  4. container: "#graph",
  5.  
  6. // container element (span) for measuring label text
  7. measureElement: "#measure",
  8.  
  9. // width & height of the donut chart
  10. width: 400,
  11. height: 400,
  12.  
  13. // ring width
  14. donutWidth: 20,
  15.  
  16. // space angle between ring segments
  17. padAngle: 0.02,
  18.  
  19. // duration of the animation
  20. animationDuration: 750,
  21.  
  22. // label color
  23. labelColor: "#9e9e9e",
  24.  
  25. // an array of colors
  26. accentColor: ["#d81b60","#80c441"],
  27.  
  28. // an array of colors used for ring segments
  29. colorSetting: ["#33876b","#559559","#77a347","#98b236","#bac024","#dcce12","#e0e0e0"],
  30.  
  31. // use color range as setted in colorSetting
  32. useColorRange: true
  33. });

7.手动更新数据。

  1. $("#graph").donutgraph("update", newData);

8.当数据发生变化时执行一个函数。

  1. $("#graph").donutgraph({
  2. onChange: function(obj) {
  3. console.log(obj);
  4. labelsOnUpdate(obj);
  5. }
  6. });

预览截图