1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > echarts柱形图X轴Y轴相关配置

echarts柱形图X轴Y轴相关配置

时间:2019-03-23 19:04:54

相关推荐

echarts柱形图X轴Y轴相关配置

可配置XY轴刻度线,字体大小,柱形图大小颜色等

const options = {tooltip: {trigger: 'axis',axisPointer: {// 坐标轴指示器,坐标轴触发有效type: 'shadow' // 默认为直线,可选为:'line' | 'shadow'},textStyle: {// 鼠标hover遮罩层字体大小fontSize: '12'}},xAxis: [{data: ['大学食堂 100间', '中学食堂 75间', '小学食堂 35间', '幼儿食堂 25间'].map(function (str) {return str.replace(' ', '\n');}),axisTick: {alignWithLabel: true,show: false // 纵轴},axisLine: {// 横轴show: true},axisLabel: {show: true,textStyle: {// 字体配置color: '#000',fontSize: '12',lineHeight: 14},// rotate:40 // 是否旋转},splitLine: {// 表格里面X轴线条show: false}}],yAxis: [{axisLabel: {// 字体配置,是否显示show: true, textStyle: {color: '#000',fontSize: '12'}},axisTick: {//y轴刻度线show: true},axisLine: {show: true, // Y轴lineStyle: {color: '#000' // 颜色}},splitLine: {// 表格里面Y轴线条show: true}}],series: [{name: '食堂',type: 'bar',data: [100, 75, 35, 25],barWidth: 30,//柱图宽度itemStyle: {normal: {//每根柱子颜色设置color: function (params) {const colorList = ["#C0BF49", "#3EB377", "#E8423D", "#0487ED" ];return colorList[params.dataIndex];}}}}]}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。