移动端 折线图 最右边的item不显示echarts 折线配置项内容和展示

如题。 version: 4.0.4。 不太想要boundaryGap=true的版本,还是希望折线的两端能对齐standard虚线两端。 =======自更======= 升级到4.2.1解决。。。。

配置项如下
      option = {
    title: {
        left: 'right',
        text: '-- 推荐周阅读量  单位(词)',
        textStyle: {
            fontSize: '60%',
            color: '#595757',
            fontWeight: 'normal',
        },
    },
    grid: {
        bottom: '20%',
    },
    xAxis: {
        type: 'category',
        data: ['05/20-05/27', '05/27-06/03', '06/03-06/10', '06/10-06/17'],
        boundaryGap: false,
        axisLabel: {
            interval: 0,
            textStyle: {
                fontSize: '50%',
                color: '#979797'
            },
        },
        axisLine: {
            show: false
        },
        axisTick: {
            show: false
        }
    },
    yAxis: {
        show: false,
        type: 'value',
        max: 332
    },
    series: [{
        data: [8, 11, 4, 30],
        type: 'line',
        label: {
            normal: {
                show: true,
                position: 'top',
                textStyle: {
                    fontSize: '50%',
                }
            }
        },
        itemStyle: {
            normal: {
                color: '#FF5B3E ',
                lineStyle: {
                    color: '#FF5B3E '
                }
            }
        },
        symbolSize: 6,
        markLine: {
            symbol: "none",
            itemStyle: {
                normal: {
                    lineStyle: {
                        type: 'dashed',
                        color: '#979797 '
                    }
                }
            },
            data: [{
                    name: 116,
                    yAxis: 116
                },
                {
                    yAxis: 116
                }
            ],
            label: {
                normal: {
                    textStyle: {
                        fontSize: '50%',
                    }
                }
            },
        },
    }]
};
    
截图如下