响应式动画柱状图插件 绘制条形图

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

简介

绘制条形图是一个响应和动画jQuery条形图(列)插件,用于在页面上绘制单个条形图或堆叠条形图。

基于纯JavaScript、HTML和CSS/CS3。不需要SVG和Canvas。

您可以自定义图表的几乎所有方面:通过添加轴、标签和图例来调整图表的大小、更改颜色、启用/禁用动画以及更改其外观。

如何使用它:

1.在文档中加载样式表draw-bar-chart.css和JavaScript draw-bar.chart.js。

  1. <!-- jQuery Is Required -->
  2. <script src="/path/to/cdn/jquery.min.js"></script>
  3. <!-- Draw Bar Chart -->
  4. <script src="./draw-bar-chart.js"></script>
  5. <link href="./draw-bar-chart.css" rel="stylesheet" />

2.创建一个空容器来容纳条形图。

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

3.初始化插件并定义您自己的数据,以便在条形图中可视化。

  1. drawBarChart(
  2. $("#example"),
  3. {
  4. // values
  5. values: [3.6, 4.9, 3.8, 2.5, 6.5],
  6. // x-axis labels
  7. labels: ["jQuery", "Script", "Net", "CSS", "Com"],
  8. },
  9. {
  10. // chart ID
  11. id: 1,
  12. // chart title
  13. chartTitle: "Basic Chart",
  14. // y-axis title
  15. yAxisTitle: "y-axis title",
  16. // x-axis title
  17. xAxisTitle: "x-axis title",
  18. }
  19. );

4.也支持负值。

  1. drawBarChart(
  2. $("#example"),
  3. {
  4. // values
  5. values: [-1.25, -6.21, 4.04, 1.98, -2.5],
  6. },
  7. {
  8. // ...
  9. }
  10. );

5.从数组中生成一个堆叠条形图。

  1. drawBarChart(
  2. $("#example"),
  3. {
  4. values: [
  5. [1, 2, 3],
  6. [-1, 2, 3],
  7. [3.5, 1, -4],
  8. [1, 0.5, -3],
  9. [-2.5, 3, -1],
  10. ],
  11. labels: ["A", "B", "C", "D", "E"],
  12. stackLabels: ["label1", "label2", "label3"],
  13. },
  14. {
  15. // ...
  16. }
  17. );

6.自定义条形图的完整插件选项。

  1. drawBarChart(
  2. $("#example"),
  3. {
  4. // data here
  5. },
  6. {
  7.  
  8. // tick interval
  9. tickInterval: 2,
  10.  
  11. // chart width
  12. width: "90vw",
  13.  
  14. // chart height
  15. height: "90vh",
  16.  
  17. // font size of chart title
  18. titleFontSize: "2em",
  19.  
  20. // color of chart title
  21. titleColour: "black",
  22.  
  23. // font size of y-axis title
  24. yAxisTitleFontSize: "1.5em",
  25.  
  26. // color of y-axis label
  27. yAxisLabelFontSize: "1.5em",
  28.  
  29. // font size of x-axis title
  30. xAxisTitleFontSize: "1.5em",
  31.  
  32. // color of x-axis label
  33. xAxisLabelFontSize: "1.5em",
  34.  
  35. // "top", "centre" or "bottom"
  36. dataLabelPosition: "top",
  37.  
  38. // color of data label
  39. dataLabelColour: "white",
  40.  
  41. // font size of data label
  42. dataLabelFontSize: "1em",
  43.  
  44. // For single bar chart: String
  45. // For stacked bar chart: Array of String
  46. barColour: "SkyBlue",
  47.  
  48. // space between bars
  49. barSpacing: "1em",
  50.  
  51. // whether to show legend
  52. showLegend: true,
  53.  
  54. // font size of stack label
  55. stackLabelFontSize: "1.1em",
  56.  
  57. // color of stack label
  58. stackLabelColour: "black",
  59.  
  60. // allows users to select values
  61. userSelect: false,
  62.  
  63. // displays values as scientific notation
  64. scientificNotation: false,
  65.  
  66. // enable/disable animation
  67. animationEffect: true,
  68.  
  69. }
  70. );

更新日志:

2022-01-07

  • 标签不够时填写堆叠的标签

预览截图