首页 > 编程 > JavaScript > 正文

jQuery插件HighCharts实现的2D对数饼图效果示例【附demo源码下载】

2019-11-19 17:13:48
字体:
来源:转载
供稿:网友

本文实例讲述了jQuery插件HighCharts实现的2D对数饼图效果。分享给大家供大家参考,具体如下:

1、实例代码:

<!DOCTYPE html><html><head><meta charset="UTF-8"><title>HighCharts 2D对数轴饼图</title><script type="text/javascript" src="js/jquery-1.7.2.min.js"></script><script type="text/javascript" src="js/highcharts.js"></script><script type="text/javascript">$(function(){ $('#logarithmicPieChart').highcharts({  chart: {  },  title: {   text: '(VeVB.COm)对数轴饼图'  },  xAxis: {   tickInterval: 2  },  yAxis: {   type: 'logarithmic',   minorTickInterval: 0.5  },  tooltip: {   headerFormat: '<b>{series.name}</b><br />',   pointFormat: 'x = {point.x}, y = {point.y}'  },  series: [{   data: [1, 3, 9, 27, 81, 243, 729, 2187, 6561, 19683,59049,177147,531441,1594323],   pointStart: 1  }] }); });</script></head><body> <div id="logarithmicPieChart" style="width: 1200px; height: 500px; margin: 0 auto"></div></body></html>

2、运行效果图:

附:完整实例代码点击此处本站下载

更多关于jQuery相关内容感兴趣的读者可查看本站专题:《jQuery常用插件及用法总结》、《jquery中Ajax用法总结》、《jQuery表格(table)操作技巧汇总》、《jQuery扩展技巧总结》、《jQuery常见经典特效汇总》及《jquery选择器用法总结

希望本文所述对大家jQuery程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表