1.y轴数据如何更改
2.length移动到x轴下20px左右
3.折线上圆形气泡颜色修改
配置项如下
option = {
title: {
text: '账户收益',
left: 'center',
textStyle: {
fontSize: 14,
fontWeight: 'normal'
}
},
legend: {
bottom: '-5%',
data: ['建议模型', '沪深300', '全资产账户']
},
xAxis: {
boundaryGap: false,
axisLine: {
onZero: false
},
axisTick: {
show: false
},
data: ['04-18', '04-25', '05-02', '05-09', '05-16']
},
yAxis: {
splitNumber: 6,
axisLabel: {
formatter: function (value) {
return value.toFixed(2) + '%';
}
},
axisLine: {
show: false
},
axisTick: {
show: false
}
},
grid: {
left: '0%',
right: '4%',
bottom: '0%',
top: '12%',
containLabel: true
},
series: [{
type: 'line',
name: '建议模型',
lineStyle: {
normal: {
color: "#367da2"//线条颜色
}
},
data: [0, -1, 1, 1.8, 2.8]
}, {
type: 'line',
name: '沪深300',
lineStyle: {
normal: {
color: "#dda42d"//线条颜色
}
},
tooltip:{
color:"367da2"
},
data: [0, -1.8, -1.2, -5, -4]
}, {
type: 'line',
name: '全资产账户',
lineStyle: {
normal: {
color: "#505e9c"//线条颜色
}
},
data: [0, -3, -2, -7, -6]
}]
};