码迷,mamicode.com
首页 > 其他好文 > 详细

echarts柱状图修改背景线为网格线、去掉刻度标签、鼠标悬停在柱条上时变色、柱条圆角弧度、

时间:2017-08-24 15:04:32      阅读:1057      评论:0      收藏:0      [点我收藏+]

标签:柱状图   label   pos   背景   show   ash   lin   data   ima   

option = { color: [‘red‘],//修改柱条颜色

tooltip : { triggerOn:‘mousemove‘ },

grid: { left: ‘3%‘, right: ‘4%‘, bottom: ‘3%‘, containLabel: true },

xAxis : [ { type : ‘category‘, data : [‘Mon‘, ‘Tue‘, ‘Wed‘, ‘Thu‘, ‘Fri‘, ‘Sat‘, ‘Sun‘],

axisTick: { show:false // alignWithLabel: true } } ],

yAxis : [ { type : ‘value‘, axisTick:{ show:false //不显示y轴刻度 },

splitLine:{ show:true, lineStyle:{ type:‘dashed‘//设置背景为虚线 } } } ],

series : [ { name:‘直接访问‘, type:‘bar‘, barWidth: ‘60%‘, data:[10, 52, 200, 334, 390, 330, 220],

silent:false, animation:false, markArea:{ silent:false, animation:false }, markPoint:{ silent:false },

label: { normal: { show: true,//显示柱条值 position: ‘top‘, textStyle:{ color:‘black‘//柱条顶部文字颜色 } } },

itemStyle:{ emphasis:{ color:[‘white‘]//鼠标悬停在柱条上时变色 },

normal:{ borderWidth:8, barBorderRadius:10,//柱条圆角弧度 } }, } ] };

echarts柱状图修改背景线为网格线、去掉刻度标签、鼠标悬停在柱条上时变色、柱条圆角弧度、

标签:柱状图   label   pos   背景   show   ash   lin   data   ima   

原文地址:http://www.cnblogs.com/hfj1/p/7422666.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!