| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
10年前发布

利用CSS创建饼状、柱状图或折线图的jQuery插件:cssCharts.js

jQuery插件用于利用dom节点和CSS创建简单饼状、柱状图或折线图。

Include:

<link rel="stylesheet" href="chart.css">  <script src="jquery.chart.js"></script>

run:

$('.bar-chart').cssCharts({type:"bar"});  $('.donut-chart').cssCharts({type:"donut"});  $('.line-chart').cssCharts({type:"line"}); 

example donut/pie chart

optional: to trigger countUp counter for the donut chart as seen on the preview page.

$('.donut-chart').cssCharts({type:"donut"}).trigger('show-donut-chart');

add "pie-chart" class to .donut-chart if you want to convert it to a pie chart, i.e

<div class="donut-chart pie-chart" data-percent="0.61" data-title="uptime %"></div>

example line chart

<ul data-cord="[x1,x2,x3,x4],[y1,y2,y3,y4]" class="line-chart"></ul>  $('.line-chart').cssCharts({type:"line"});
  • insure x cordinates are 0 - ascending.
  • insure y cordinates are 0 or greater.

example bar chart

<ul class="bar-chart" data-bars="[x1,x2],[y1,y2]" data-max="10" data-unit="k" data-grid="1" data-width="24">  $('.bar-chart').cssCharts({type:"bar"});

style to your hearts content, see index.html for an example implementation.


项目主页:http://www.open-open.com/lib/view/home/1431177360116

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1431177360116.html
图表/报表制作 cssCharts.js