300字范文,内容丰富有趣,生活中的好帮手!
300字范文 > 设置echarts的grid tooltip 柱状图渐变色 折线图渐变色

设置echarts的grid tooltip 柱状图渐变色 折线图渐变色

时间:2020-04-20 09:58:23

相关推荐

设置echarts的grid tooltip 柱状图渐变色 折线图渐变色

grid: {show: false,left: '0px',top: '50px',right: '1px',bottom: '0px',containLabel: true,backgroundColor: 'white',//show: true的时候才显示borderColor: '#ccc',borderWidth: 1,//更多属性访问/option.html#grid}

tooltip: {trigger: "axis",axisPointer: {type: "line",lineStyle: {color: "blue"//设置提示框线条颜色}},backgroundColor: "rgba(0,0,0,0.6)",borderWidth: 1,borderColor: "rgba(0,2,85,0.8)",padding: 10,textStyle: {color: "blue"//更多属性访问/option.html#tooltip}}

/*柱状图渐变色*/series: [{itemStyle: {normal: {barBorderRadius: 10,color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0,color: 'rgba(153,217,234,0)'}, {offset: 1,color: '#3fa7dc'}]),shadowColor: 'rgba(0, 0, 0, 0.4)',shadowBlur: 20,}}},//更多属性访问/option.html#series]

/*折线图渐变色*/series: [{areaStyle: {normal: {color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0,color: 'rgba(255, 158, 68,1)'}, {offset: 1,color: 'rgba(255, 70, 131,0)'}])}}},//更多属性访问/option.html#series]

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