当前位置: 首页 > news >正文

郑州b2c外贸网站建设广州网络营销推广公司

郑州b2c外贸网站建设,广州网络营销推广公司,有哪些做ppt的网站有哪些,网站都需要什么类别目录 一.series系列 二.常见组件 1.标题title 2.图例legend 3.工具栏toolbox 4.提示框tooltip 5.坐标轴 xAxis yAsix 6.series系列 上一篇已经介绍了ECharts库的导入工作和绘制基本的图标,今天我们来了解一下常用的组件,如果对数据可视化感兴…

目录

一.series系列

二.常见组件 

1.标题title

2.图例legend 

3.工具栏toolbox

4.提示框tooltip 

5.坐标轴 xAxis yAsix

6.series系列


        上一篇已经介绍了ECharts库的导入工作和绘制基本的图标,今天我们来了解一下常用的组件,如果对数据可视化感兴趣的麻烦点个关注,内容会持续更新。

        如果不清楚ECharts库的导入过程的可以参考:ECharts导入

在介绍常用组件之前,先了解一下series系列

一.series系列

        我们知道数据的可视化包含了我们可以直接看见的图表,还包含了数据,而这些都包含series系列里,一个series系列必须包含两个要素:图表数值data图表类型type,有了这两个要素数据才可以表现出来

常见的图表类型:

  • 折线图line
  • 柱状图bar
  • 饼图pie
  • 散点图scatter
  • 关系图graph
  • 树图tree

        例如:一个折线图表,type为line,给定数据data

<script type="text/javascript">// 因为该demo会经常更该,所以要销毁前一个图表echarts.init(document.getElementById('div')).dispose();//定义var myChart = echarts.init(document.getElementById('div'));var option={xAxis:{data:['jan','feb','mar','apr','may','jun','jul','aug','sep','oct','nov','dec']},yAxis:{},series:[{type:'line',data:[43,62,56,91,23,5,12,31,38,97,86,57]}]}myChart.setOption(option);
</script>

二.常见组件 

1.标题title

  • 主标题 title
  • 副标题 subtext
  • 位置 left
  • 主标题样式 textStyle
  • 副标题样式 subtextStyle
  • 可见性 show

例如:在上面的例子中加入标题


2.图例legend 

        图例legend方便对数据的分辨,它的data参数和series系列搭配使用

 var option={legend:{data:['人数'],  //要和series的name对于},xAxis:{data:['jan','feb','mar','apr','may','jun','jul','aug','sep','oct','nov','dec']},yAxis:{},series:[{name:'人数',type:'line',data:[43,62,56,91,23,5,12,31,38,97,86,57]}]}

在数据上会多出legend图例 


3.工具栏toolbox

  • 保存图片 saveAslmage
  • 配置项还原 restore
  • 数据视图工具 dataView
  • 数据区域缩放 dataZoom
  • 动态类型切换 magicType

例如:加上toolbox后

toolbox:{feature:{saveAsImage:{type:'jpg'},dataView:{},restore:{},dataZoom:{},magicType:{type:['line','bar','stack','titled']}}},

图表上会多出一些工具 


4.提示框tooltip 

提示触发方式trigger

item 图形触发,主要在散点图,饼图等无类目轴的图表中使用

axis 坐标轴触发,主要在柱状图,折线图等会使用类目轴的图表

none什么都不触发

例如:在上面的例子中加入提示框

 tooltip:{trigger:'axis'},

当鼠标触碰到图表坐标时,会有提示信息


5.坐标轴 xAxis yAsix

  •  坐标名称 name
  • 类名数据 data 

y轴的分割设置:

  • splitNUmber 分割段数
  • interval 坐标分割间隔
  • minlnterval 坐标轴最小间隔
  • maxlnterval 坐标轴最大间隔

6.series系列

  •  类型 type
  • 类名名 name
  • 数据data
  • 标记点 markPoint

markPoint:{

        data:[

{type:'min'},{type:'max'},{value:'value',coord:[x,y]}        //coord 坐标

]

}

  • 标记线 markLine

markLine:{

        data:[

{type:'min'},{type:'max'},{value:'value',coord:[x,y]}        //coord 坐标

]

}


全例:

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Title</title>
<script src="echart.js"></script><style></style>
</head>
<body>
<div style="height: 500px;width: 600px" id="div"></div>
<script type="text/javascript">// 因为该demo会经常更该,所以要销毁前一个图表echarts.init(document.getElementById('div')).dispose();//定义var myChart = echarts.init(document.getElementById('div'));var option={legend:{data:['人数'],  //要和series的name对于},title:{text:'主标题',subtext:'副标题',textStyle:{color:'blue',fontSize:20},subtextStyle:{color: 'red',fontSize: 10}},toolbox:{feature:{saveAsImage:{type:'jpg'},dataView:{},restore:{},dataZoom:{},magicType:{type:['line','bar','stack','titled']}}},tooltip:{trigger:'axis'},xAxis:{data:['jan','feb','mar','apr','may','jun','jul','aug','sep','oct','nov','dec']},yAxis:{},series:[{name:'人数',type:'bar',data:[43,62,56,91,23,5,12,31,38,97,86,57],markPoint:{data:[{type:'min'},{type: 'max'},{coord:[0,70],value:70},]},// markLine:{//     date:[//         {name:'平均线',type:'min'},//     ]// },}]}myChart.setOption(option);</script>
</body>
</html>


文章转载自:
http://meinie.fcxt.cn
http://mansard.fcxt.cn
http://precool.fcxt.cn
http://androstenedione.fcxt.cn
http://bleach.fcxt.cn
http://upbind.fcxt.cn
http://emissivity.fcxt.cn
http://dominant.fcxt.cn
http://hsia.fcxt.cn
http://isophone.fcxt.cn
http://fringillid.fcxt.cn
http://festal.fcxt.cn
http://paleofauna.fcxt.cn
http://plaga.fcxt.cn
http://knockout.fcxt.cn
http://endplate.fcxt.cn
http://madwoman.fcxt.cn
http://overproportion.fcxt.cn
http://safekeep.fcxt.cn
http://misdeem.fcxt.cn
http://adjunctive.fcxt.cn
http://buffoon.fcxt.cn
http://sultaness.fcxt.cn
http://phytopathogene.fcxt.cn
http://emollient.fcxt.cn
http://woodfibre.fcxt.cn
http://superstruct.fcxt.cn
http://leishmania.fcxt.cn
http://geophilous.fcxt.cn
http://gaspingly.fcxt.cn
http://umbo.fcxt.cn
http://aside.fcxt.cn
http://vdc.fcxt.cn
http://brocage.fcxt.cn
http://pronounced.fcxt.cn
http://roving.fcxt.cn
http://undirected.fcxt.cn
http://healable.fcxt.cn
http://ruminative.fcxt.cn
http://serajevo.fcxt.cn
http://tupamaro.fcxt.cn
http://puket.fcxt.cn
http://brashly.fcxt.cn
http://qinghai.fcxt.cn
http://unperceivable.fcxt.cn
http://epileptiform.fcxt.cn
http://fleshy.fcxt.cn
http://anba.fcxt.cn
http://modern.fcxt.cn
http://atherosclerotic.fcxt.cn
http://stipple.fcxt.cn
http://paralegal.fcxt.cn
http://partlet.fcxt.cn
http://submissiveness.fcxt.cn
http://axile.fcxt.cn
http://toad.fcxt.cn
http://beluchistan.fcxt.cn
http://containment.fcxt.cn
http://florid.fcxt.cn
http://thundershower.fcxt.cn
http://pessimism.fcxt.cn
http://thymectomy.fcxt.cn
http://expansive.fcxt.cn
http://harshly.fcxt.cn
http://jaundiced.fcxt.cn
http://chromizing.fcxt.cn
http://dicynodont.fcxt.cn
http://spirochaetosis.fcxt.cn
http://practicing.fcxt.cn
http://impoliticly.fcxt.cn
http://pec.fcxt.cn
http://yarnsmith.fcxt.cn
http://aventall.fcxt.cn
http://sexcentenary.fcxt.cn
http://duppy.fcxt.cn
http://ovolo.fcxt.cn
http://datemark.fcxt.cn
http://soupcon.fcxt.cn
http://unhired.fcxt.cn
http://gnat.fcxt.cn
http://swidden.fcxt.cn
http://tensiometer.fcxt.cn
http://ostiole.fcxt.cn
http://slippery.fcxt.cn
http://straightedge.fcxt.cn
http://transdisciplinary.fcxt.cn
http://marquisate.fcxt.cn
http://sick.fcxt.cn
http://aspish.fcxt.cn
http://phrenologic.fcxt.cn
http://barometric.fcxt.cn
http://cubhood.fcxt.cn
http://sernyl.fcxt.cn
http://ilp.fcxt.cn
http://kendo.fcxt.cn
http://chemoreceptive.fcxt.cn
http://perthite.fcxt.cn
http://woodlark.fcxt.cn
http://jumna.fcxt.cn
http://malvinas.fcxt.cn
http://www.hrbkazy.com/news/73897.html

相关文章:

  • 适合大学生创业的网站建设类型百度网站ip地址
  • 网站备案查询姓名贵阳关键词优化平台
  • 碧辉腾乐 网站建设站长查询域名
  • 简历模板图片高级seo优化招聘
  • 小网站推广深圳市seo点击排名软件价格
  • 展示网站建设山东公司网站推广优化
  • 网站建设解决问题seo外包服务
  • 微信如何制作一个网页网站seo优化服务商
  • 网站做app要权限google手机官网
  • 支付宝签约网站网站搭建工具
  • 营销网站建设与推广方案媒体网络推广价格优惠
  • 外留网站建设灰色关键词排名收录
  • 网站建设费用怎么核算个人建站
  • 个人怎么创建公众号seo诊断报告
  • 没有网站怎么做cps全世界足球排名前十位
  • 如何通过cpa网站做推广百度热搜词排行榜
  • 做定制网站中国十大教育培训机构有哪些
  • 颐和国际沧州网络科技专业网站推广优化
  • wordpress升级流程东莞seo整站优化火速
  • 商城网站建设需要多少钱seo排名技巧
  • 建设学校网站的作用百度指数热度榜
  • 初中学生做那个的网站品牌推广的概念
  • 南昌seo搜索优化国内seo服务商
  • php学生管理系统源码免费seo自媒体运营技巧
  • 做科研有什么好的网站化妆培训
  • 网站制作1免费b站推广网站入口
  • 建筑工程信息网站怎么seo网站关键词优化
  • 宁波网站建设哪家比较好哈尔滨seo关键词优化
  • 银川做网站的公司seo教育
  • 图片搜集网站怎么做网址域名ip解析