echarts折线图⾃定义颜⾊与修改legend颜⾊
图⽰
option4 = {
title : {
text: '',
subtext: ''
},
color:['#2db7f5','#ff6600','#808bc6'],      //关键加上这句话,legend的颜⾊和折线的⾃定义颜⾊就⼀致了
legend: {
icon: 'rectangle',
data: ['total', 'dfs_used','non_dfs_used'],
right: '4%',
textStyle: {
fontSize: 12,
color: '#666'
}
},
/*grid:{y:15},*/
tooltip : {
trigger: 'axis'
},
calculable : true,
yAxis : [
{
type : 'value',
splitLine:{show: false},//去除⽹格线
//boundaryGap : [0, 0.1],
textstyle
axisLabel: {
show: true,
textStyle: {
color:'#666' //这⾥⽤参数代替了
}
},
}
],
xAxis : [
{
type : 'category',
splitLine:{show: false},//去除⽹格线
data : ['5','10','15','20','25','30','35','40','45'],
axisLabel: {
show: true,
textStyle: {
color:'#666' //这⾥⽤参数代替了
}
},
}
],
series : [
{
name:'total',

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。