Toggle navigation
关于“省优质幼儿园评选”的投票
By
我爱话梅的故事
2019-04-24 14:15:46
脚本
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
图表已生成
整理代码
刷新
代码
// 关于“省优质幼儿园评选”的投票 var chartData = [18,28,15,6,17,8,8]; var chartName = ['阳光新城幼儿园', '汤沐景苑幼儿园', '张寨镇新星幼儿园','朱寨镇新思路幼儿园','朱寨镇燕牌坊幼儿园','龙固镇春龙佳源幼儿园','任庄幼儿园']; // var unit='亿元'; var myColor = ['#FFA483','#F97F53','#F45922']; option = { // title: { // text: '单位: '+unit, // right:0, // textStyle: { // color: '#000', // fontSize:14, // } // }, backgroundColor: '#fff', grid: { left: '2%', right: '10%', bottom: '10%', top: '10%', containLabel: true }, xAxis: [{ show: false, }, { show: false, } ], yAxis: { type: 'category', inverse: true, show: false }, series: [ //亮色条 百分比 { show: true, type: 'bar', barGap: '-100%', barWidth: '20%', z: 2, itemStyle: { normal: { color: function(params) { var num = myColor.length; return myColor[params.dataIndex % num] } } }, label: { normal: { show: true, textStyle: { color: '#000', fontSize: 25, fontWeight: 'bold' }, position: 'right', formatter: function(data) { return (chartData[data.dataIndex]).toFixed(2) + '%'; } } }, data: chartData, }, //年份 { show: true, type: 'bar', xAxisIndex: 1, //代表使用第二个X轴刻度 barGap: '-100%', barWidth: '10%', itemStyle: { normal: { barBorderRadius: 200, color: 'transparent' } }, label: { normal: { show: true, position: [0, '-20'], textStyle: { fontSize:14, color: '#333', }, formatter: function(data) { return chartName[data.dataIndex]; } } }, data: chartData } ] };