echarts 折线图 grid代码不动 x轴发生偏移
时间: 2023-05-11 19:05:33 浏览: 299
折线图代码
可能是因为您设置了grid的left和right属性,导致x轴发生偏移。您可以尝试将left和right属性设置为0,或者调整其值来解决问题。以下是一个示例代码:
grid: {
left: '0%',
right: '0%',
bottom: '0%',
containLabel: true
},
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: [{
data: [120, 200, 150, 80, 70, 110, 130],
type: 'line'
}]
阅读全文