Highcharts图表库
2018-06-23 13:26:51来源:未知 阅读 ()
Highcharts图表库
1、相关网址:
1)官方主页:https://www.hcharts.cn/
2)Highcharts演示:https://www.hcharts.cn/demo/highcharts
3)下载中心:https://www.hcharts.cn/download
2、查看源代码
1)在图表演示页面找到需要的图表点击进入具体演示图
2)将代码中的数据改为需要的数据代码可以直接使用
3、使用实例
1)条形图
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <input type="button" onclick="addSeries()" value="添加一个人"> <input type="button" onclick="updateItem()" value="更新一个值"> <div id="container" style="width: 600px;height:400px;"></div> <script src="/static/js/highcharts.js"></script> <script src="/static/js/highcharts-zh_CN.js"></script> <script> var options = { chart: { type: 'bar' //指定图表的类型,默认是折线图(line) }, title: { text: '我的第一个图表' // 标题 }, xAxis: { categories: ['苹果', '香蕉', '橙子'] // x 轴分类 }, yAxis: { title: { text: '吃水果个数' // y 轴标题 } }, series: [{ // 数据列 name: '小明', // 数据列名 data: [1, 0, 4] // 数据 }, { name: '小红', data: [5, 7, 3] }] }; // 图表初始化函数 var chart = Highcharts.chart('container', options); function addSeries() { chart.addSeries({name: '小刘', data: [30.4, 10.1, 9]}); } function updateItem() { chart.series[0].data[0].update(6); } </script> </body> </html>
2)折线图
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <input type="button" onclick="addSeries()" value="添加一个人"> <input type="button" onclick="addItem()" value="添加一个值"> <input type="button" onclick="updateItem()" value="更新一个值"> <input type="button" onclick="delItem()" value="删除一个值"> <input type="button" onclick="delSeries()" value="删除一个人"> <div id="container" style="width: 600px;height:400px;"></div> <script src="/static/js/highcharts.js"></script> <script src="/static/js/highcharts-zh_CN.js"></script> <script> var options = { title: { text: '我的第一个图表' // 标题 }, xAxis: { type: 'datetime', labels: { formatter: function () { return Highcharts.dateFormat('%Y-%m-%d %H:%M:%S', this.value); }, rotation: 30 } }, yAxis: { title: { text: '吃水果个数' // y 轴标题 } }, series: [{ // 数据列 name: '小明', // 数据列名 data: [ [1501689804077.358, 1.0], [1501689814077.358, 8.0], [1501689824077.358, 3.0] ] // 数据 }, { name: '小赵', data: [ [1501689814077.358, 8.0], [1501689819077.358, 18.0], [1501689825077.358, 4.0] ] // 数据 } ] }; // 图表初始化函数 var chart = Highcharts.chart('container', options); function addSeries() { chart.addSeries({ name: '小刘', data: [ [1501689814077.358, 18.0], [1501689819077.358, 8.0], [1501689825077.358, 3.0] ] }); } function updateItem() { //$('#id1').highcharts() chart.series[0].data[0].update(66); } function addItem() { chart.series[0].addPoint([1501689825077, 18]); } function delItem() { chart.series[0].data[1].remove(); } function delSeries() { chart.series[0].remove(false); } </script> </body> </html>
3)3d柱状图
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <input type="button" onclick="addSeries()" value="添加一个人"> <input type="button" onclick="addItem()" value="添加一个值"> <input type="button" onclick="updateItem()" value="更新一个值"> <input type="button" onclick="delItem()" value="删除一个值"> <input type="button" onclick="delSeries()" value="删除一个人"> <div id="container" style="width: 600px;height:400px;"></div> <script src="/static/js/highcharts.js"></script> <script src="/static/js/highcharts-3d.js"></script> <script src="/static/js/highcharts-zh_CN.js"></script> <script> var options = { chart: { type: 'column', options3d: { enabled: true, alpha: 15, beta: 15, viewDistance: 25, depth: 40 }, marginTop: 80, marginRight: 40 }, title: { text: '以姓名划分的水果消费总量' }, xAxis: { categories: ['1月', '2月', '3月', '4月', '5月', '6月'] }, yAxis: { allowDecimals: false, min: 0, title: { text: '水果数量' } }, tooltip: { headerFormat: '<b>{point.key}</b><br>', pointFormat: '<span style="color:{series.color}">\u25CF</span> {series.name}: {point.y} ' }, plotOptions: { column: { //stacking: 'normal', //depth: 40 } }, series: [{ name: '小张', data: [5, 3, 4, 7, 2] }, { name: '小王', data: [3, 4, 4, 2, 5] }, { name: '小彭', data: [2, 5, 6, 2, 1] }, { name: '小潘', data: [3, 0, 4, 4, 3] }] }; // 图表初始化函数 var chart = Highcharts.chart('container', options); function addSeries() { chart.addSeries({ name: '小刘', data: [5, 3, 4, 7, 2] }); } function updateItem() { //$('#id1').highcharts() chart.series[0].data[0].update(18); } function addItem() { chart.series[0].addPoint(18); } function delItem() { chart.series[0].data[1].remove(); } function delSeries() { chart.series[0].remove(false); } </script> </body> </html>
4)实时刷新曲线图
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <div id="container" style="width: 600px;height:400px;"></div> <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> <script src="/static/js/highstock.js"></script> <script src="/static/js/highcharts-zh_CN.js"></script> <script> Highcharts.setOptions({ global: { useUTC: false } }); function activeLastPointToolip(chart) { var points = chart.series[0].points; chart.tooltip.refresh(points[points.length -1]); } $('#container').highcharts({ chart: { type: 'spline', animation: Highcharts.svg, // don't animate in old IE marginRight: 10, events: { load: function () { // set up the updating of the chart each second var series = this.series[0], chart = this; setInterval(function () { var x = (new Date()).getTime(), // current time y = Math.random(); series.addPoint([x, y], true, true); activeLastPointToolip(chart) }, 1000); } } }, title: { text: '动态模拟实时数据' }, xAxis: { type: 'datetime', tickPixelInterval: 150 }, yAxis: { title: { text: '值' }, plotLines: [{ value: 0, width: 1, color: '#808080' }] }, tooltip: { formatter: function () { return '<b>' + this.series.name + '</b><br/>' + Highcharts.dateFormat('%Y-%m-%d %H:%M:%S', this.x) + '<br/>' + Highcharts.numberFormat(this.y, 2); } }, legend: { enabled: false }, exporting: { enabled: false }, series: [{ name: '随机数据', data: (function () { // generate an array of random data var data = [], time = (new Date()).getTime(), i; for (i = -19; i <= 0; i += 1) { data.push({ x: time + i * 1000, y: Math.random() }); } return data; }()) }] }, function(c) { activeLastPointToolip(c) }); </script> </body> </html>
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 性能测试 基于Python结合InfluxDB及Grafana图表实时采集Linu 2019-02-25
- Python导出Excel图表 2018-12-19
- 要想成为一名月入几万的数据分析师,绘制图表是必会的!实例 2018-09-18
- Highcharts图表库 2018-06-18
- 无聊写了一个最简单的MVC4+Highcharts连数据库例子 2018-06-17
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash