本文主要是介绍数据可视化01-初识echart,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、echart官网
http://echarts.baidu.com/index.html
2、echart特性
ECharts,一个使用 JavaScript 实现的开源可视化库,可以流畅的运行在 PC 和移动设备上,兼容当前绝大部分浏览器(IE8/9/10/11,Chrome,Firefox,Safari等),底层依赖轻量级的矢量图形库 ZRender,提供直观,交互丰富,可高度个性化定制的数据可视化图表。 http://echarts.baidu.com/feature.html
3、5 分钟上手 ECharts
获取 ECharts、引入 ECharts、绘制一个简单的图表http://echarts.baidu.com/tutorial.html#5%20分钟上手%20ECharts
4、学会使用api
http://echarts.baidu.com/api.html#echarts 不懂多查
http://echarts.baidu.com/examples/ 官网实例
5、本节实例
学会使用Chrome 超完整的Chrome浏览器客户端调试大全 查看布局与样式及逻辑关系等
<!DOCTYPE html>
<html>
<head><meta charset="utf-8"><script src="js/echarts.js"></script><style type="text/css">.content{width:100%;}.text{background-color: rgba(182, 190, 196, 0.76);color:white;overflow: hidden;}.child{overflow: hidden;background-color:whitesmoke;/*vertical-align: middle;*//*text-align: center;*/}th{width: 33%;}td{width: 33%;height: 300px;}</style>
</head>
<body><table class="content"><tr class="text"><th>基本折线图</th><th>堆叠柱状图</th><th>定制饼状图</th></tr><tr class="child"><td ><div id="cell01" style="width: 100%;height: 100%;"></div></td><td ><div id="cell02" style="width: 100%;height: 100%;"></div></td><td ><div id="cell03" style="width: 100%;height: 100%;"></div></td></tr></table><script type="text/javascript">// 基于准备好的dom,初始化echarts实例var myChart = echarts.init(document.getElementById('cell01'));var xAxisData = [];var data2 = [];var data3 = [];var data4 = [];//组装 数据for (var i = 0; i < 4; i++) {if (i == 0) {xAxisData.push('武汉');} else if (i == 1) {xAxisData.push('西南');} else if (i == 2) {xAxisData.push('西北');} else if (i == 3) {xAxisData.push('总部');}data2.push((Math.random() * 5 + 90).toFixed(0));data3.push((Math.random() * 1 + 10).toFixed(0));data4.push((Math.random() + 5).toFixed(0));}var itemStyle = {normal: {},emphasis: {barBorderWidth: 1,shadowBlur: 20,shadowOffsetX: 0,shadowOffsetY: 0,shadowColor: 'rgba(0,0,0,0.5)'}};var option = {backgroundColor: '#383E54',legend: {data: [],},toolbox: {feature: {dataView: {}}},tooltip: {},xAxis: {data: xAxisData,silent: true,axisLine: {onZero: true,lineStyle: {color: '#535877',width: 1,//线的高度},},axisTick: {show: false},axisLabel: {color: '#fff',fontSize: 15},splitLine: {show: false},splitArea: {show: false}},yAxis: {type: 'value',splitLine: {lineStyle: {color: '#535877'}},nameTextStyle: {color: ['#fff']},axisTick: {show: false},axisLabel: {color: '#fff',fontSize: 12},axisLine: {lineStyle: {color: '#535877',width: 1,//这里是为了突出显示加上的}}},grid: {left: 48},series: [{name: '正常',type: 'bar',barWidth: '35%', //设置柱状体宽度stack: 'two',color: '#6eb445',itemStyle: itemStyle,label:{show:false,fontSize :10},data: data2},{name: '预警',type: 'bar',stack: 'two',label:{show:false,fontSize :10},color: '#f8aa18',itemStyle: itemStyle,data: data3},{name: '滞后',type: 'bar',stack: 'two',label:{show:false,fontSize :10},color: '#f63737',itemStyle: itemStyle,data: data4}]};// 使用刚指定的配置项和数据显示图表。myChart.setOption(option);
</script>
</body>
</html>
6、作业
按照本例,做出3*2 table样式,并随意填充echart实例
这篇关于数据可视化01-初识echart的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!