Toggle navigation
立体柱状图
By
z***8
2020-10-29 03:27:51
脚本
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
图表已生成
整理代码
刷新
代码
option = { backgroundColor: '#0e202d', "title": { "text": "第三采油厂", "subtext": "总数: 599", "textStyle": { "color": "#fff", "fontSize": 20 }, "subtextStyle": { "color": "#999", "fontSize": 16 }, "x": "center", "top": "0%" }, "grid": { "top": 200, "bottom": 150 }, "tooltip": {}, "xAxis": { "data": ["关井数", "开井数", "不在线"], "axisTick": { "show": false }, "axisLine": { "show": false }, "axisLabel": { interval:0, textStyle: { color: '#beceff', fontSize:20, }, margin: 80, //刻度标签与轴线之间的距离。 } }, "yAxis": { "splitLine": { "show": false }, "axisTick": { "show": false }, "axisLine": { "show": false }, "axisLabel": { "show": false } }, "series": [{ "name": "", "type": "pictorialBar", "symbolSize": [100, 45], "symbolOffset": [0, -20], "z": 12, "data": [{ "name": "关井数", "value": "981", "trueVal": "98", "symbolPosition": "end", "itemStyle": { "normal": { "color": "#00fff5" //圆柱顶部颜色 } } }, { "name": "开井数", "value": "1000", "trueVal": "100", "symbolPosition": "end", "itemStyle": { "normal": { "color": "#ffcc00" //圆柱顶部颜色 } } }, { "name": "不在线", "value": "900", "trueVal": "90", "symbolPosition": "end", "itemStyle": { "normal": { "color": "#b9b7ff" //圆柱顶部颜色 } } }] }, { "name": "", "type": "pictorialBar", "symbolSize": [100, 45], "symbolOffset": [0, 24], "z": 12, "data": [{ "name": "关井数", "value": "981", "trueVal": "98", "itemStyle": { "normal": { "color": "#43bafe" //圆柱底部颜色 } } }, { "name": "开井数", "value": "1000", "trueVal": "100", "itemStyle": { "normal": { "color": "#ff7800" //圆柱底部颜色 } } }, { "name": "不在线", "value": "900", "trueVal": "90", "itemStyle": { "normal": { "color": "#e9a5ff" //圆柱底部颜色 } } }] }, { "name": "", "type": "pictorialBar", "symbolSize": [150, 75], "symbolOffset": [0, 44], "z": 11, "data": [{ "name": "关井数", "value": "981", "trueVal": "98", "itemStyle": { "normal": { "color": "transparent", "borderColor": "#43bafe", //底部内圆圈颜色 "borderWidth": 5 } } }, { "name": "开井数", "value": "1000", "trueVal": "100", "itemStyle": { "normal": { "color": "transparent", "borderColor": "#ff7800", //底部内圆圈颜色 "borderWidth": 5 } } }, { "name": "不在线", "value": "900", "trueVal": "90", "itemStyle": { "normal": { "color": "transparent", "borderColor": "#e9a5ff", //底部内圆圈颜色 "borderWidth": 5 } } }] }, { "name": "", "type": "pictorialBar", "symbolSize": [200, 100], "symbolOffset": [0, 62], "z": 10, "data": [{ "name": "关井数", "value": "981", "trueVal": "98", "itemStyle": { "normal": { "color": "transparent", "borderColor": "#43bafe", //底部外圆圈颜色 "borderType": "dashed", "borderWidth": 5 } } }, { "name": "开井数", "value": "1000", "trueVal": "100", "itemStyle": { "normal": { "color": "transparent", "borderColor": "#ff7800", //底部外圆圈颜色 "borderType": "dashed", "borderWidth": 5 } } }, { "name": "不在线", "value": "900", "trueVal": "90", "itemStyle": { "normal": { "color": "transparent", "borderColor": "#e9a5ff", //底部外圆圈颜色 "borderType": "dashed", "borderWidth": 5 } } }] }, { "type": "bar", "silent": true, "barWidth": 100, "barGap": "-100%", "data": [{ "name": "关井数", "value": "981", "trueVal": "98", "label": { "normal": { "show": true, "position": "top", "distance": 40, "textStyle": { "color": "#00fff5", //柱子对应数值颜色 "fontSize": 40 } } }, "itemStyle": { "normal": { "color": { "x": 0, "y": 0, "x2": 0, "y2": 1, "type": "linear", "global": false, "colorStops": [{ "offset": 0, "color": "rgba(0,255,245,0.5)" }, { "offset": 1, "color": "#43bafe" //底部渐变颜色 }] } } } }, { "name": "开井数", "value": "1000", "trueVal": "100", "label": { "normal": { "show": true, "position": "top", "distance": 40, "textStyle": { "color": "#ffcc00", //柱子对应数值颜色 "fontSize": 40 } } }, "itemStyle": { "normal": { "color": { "x": 0, "y": 0, "x2": 0, "y2": 1, "type": "linear", "global": false, "colorStops": [{ "offset": 0, "color": "rgba(255,204,0,0.5)" }, { "offset": 1, "color": "#ff7800" //底部渐变颜色 }] } } } }, { "name": "不在线", "value": "900", "trueVal": "90", "label": { "normal": { "show": true, "position": "top", "distance": 40, "textStyle": { "color": "#b9b7ff", //柱子对应数值颜色 "fontSize": 40 } } }, "itemStyle": { "normal": { "color": { "x": 0, "y": 0, "x2": 0, "y2": 1, "type": "linear", "global": false, "colorStops": [{ "offset": 0, "color": "rgba(185,183,255,0.5)" }, { "offset": 1, "color": "#e9a5ff" //底部渐变颜色 }] } } } }] }] }