Toggle navigation
柱形堆叠图(附动态切换数据链接)
By
就***d
2019-07-17 07:32:45
脚本
16
21
作品使用的第三方脚本
数据管理
上传数据
支持小于 5M 任意格式(csv, xlsx, json, xml, ...)的数据文件
上传后可以通过生成的文件链接异步获取托管的数据。
历史数据
0 条
无历史数据
代码修改记录
信息提示
保存作品
对当前截图不满意?你还可以
上传本地截图
重新截图
作品名称
作品描述
标签
geo
grid
legend
markLine
markPoint
bar
effectScatter
line
lines
map
timeline
title
toolbox
tooltip
visualMap
作品默认版本
最新
16
15
14
13
12
11
10
9
8
7
6
5
4
3
2
1
20:11:45
图表已生成
整理代码
刷新
代码
//2019-07-17 因结构不同 要实现 周月年动态切换数据功能 //请参考 https://blog.csdn.net/qq_42221334/article/details/96307823 option = { backgroundColor: '#1c2431',//地图背景色 title: { text: '因结构不同 要实现 周月年动态切换数据功能请访问左侧注释网址', x: 'center', top: "20", textStyle: { color: '#fff', fontSize: 12 } }, color: ["#ed9d3c",'#4fd7fd'], tooltip : { trigger: 'axis', axisPointer : { // 坐标轴指示器,坐标轴触发有效 type : 'shadow' // 默认为直线,可选为:'line' | 'shadow' } }, legend: { selectedMode:false,//取消图例上的点击事件 data:['系统外部','系统内部'], textStyle: { fontSize: '12', color:'#fff' } }, grid: { left: '3%', right: '4%', bottom: '3%', containLabel: true }, xAxis : [ { type : 'category', data : ['K4310','K43102','K52001','H2021','H2021'], axisLabel: { rotate:45,//斜体字可不用 textStyle: { fontSize: '12', color:'#fff' } }, } ], yAxis : [ { type : 'value', minInterval:100,//设置左侧Y轴最小刻度 splitLine: { lineStyle: { type: 'dashed', color: 'rgba(135,140,147,0.8)' } },//设置横线样式 axisLabel: { textStyle: { fontSize: '12', color:'#fff' } }, } ], //2019-07-17 因结构不同 要实现 周月年动态切换数据功能 //请参考 https://blog.csdn.net/qq_42221334/article/details/96307823 series : [ { name:'系统外部', type:'bar', stack: '排名', data:[120, 132, 101, 134, 90], barWidth:8 }, { name:'系统内部', type:'bar', stack: '排名', data:[220, 182, 191, 234, 290], barWidth:8, itemStyle:{ normal:{ barBorderRadius: [30, 30, 0, 0], } } }, ] }; //2019-07-17 因结构不同 要实现 周月年动态切换数据功能 //请参考 https://blog.csdn.net/qq_42221334/article/details/96307823