title: {
text: '单位:例',
textStyle: {
color: '#999999',
fontWeight: '500',
fontSize: 14
},
x: 'right',
padding: [20, 20, 0, 0]
},
{
name: nameList[index],
type: index === 3 ? 'line' : 'bar',
showBackground: true,
data: arg,
barWidth: 6,//配置粗细
itemStyle: { barBorderRadius: [20] }
}
legend: {
data: nameList,
itemWidth: 20,
itemHeight: 4,
y: 'bottom',
textStyle: {
fontSize: 11,
color: '#333333'
}
},
这个有时候会有误差 要根据内容自己去调整
grid: {
top: 80,
left: 47,
right: 55,
bottom: 50
},
tooltip: {
trigger: 'axis',
axisPointer: {
// 坐标轴指示器,坐标轴触发有效
type: 'shadow' // 默认为直线,可选为:'line' | 'shadow'
}
},
解决方法:设置下方的属性
series: [
{
connectNulls: true,
data: yvalue,
type: 'line'
}
]
xAxis:
{
axisLabel: {
showMaxLabel: true
}
}