欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

echarts图表之去掉折线图的折点圆圈,实测有效 原创

程序员文章站 2022-11-04 09:10:19
关键属性:symbol: 'none', option = { xAxis: { type: 'category',...

关键属性:symbol: 'none',

option = {
    xAxis: {
        type: 'category',
        data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
    },
    yAxis: {
        type: 'value'
    },
    series: [{
        data: [820, 932, 901, 934, 1290, 1330, 1320],
        type: 'line',

        symbol: 'none',  //取消折点圆圈

        smooth: true
    }]
};

效果对比:

去掉前:

echarts图表之去掉折线图的折点圆圈,实测有效
                    原创

去掉后:

echarts图表之去掉折线图的折点圆圈,实测有效
                    原创