折线图线宽过宽时头尾显示不全echarts 折线配置项内容和展示

配置项如下
      option = {
    xAxis: {
        type: 'category',
        data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
    },
    yAxis: {
        type: 'value'
    },
    series: [{
        smooth:true,
        data: [0, 932, 901, 934, 1290, 1330, 0],
        type: 'line',
        symbol:'none',
        lineStyle:{
            width:35
        }
    }]
};

    
截图如下