首页 > 其他 > 详细

echarts爬坑 : 怎么Line折线图设置symbol:none后Label不见了?

时间:2019-11-08 01:02:30      阅读:823      评论:0      收藏:0      [点我收藏+]

用 echarts 时遇到了一个奇奇怪怪的问题。

 

这是一张折线图。

本来这个图是有数字显示的。

series : [
        {
            name:‘搜索引擎‘,
            type:‘line‘,
            stack: ‘总量‘,
            label: {
                normal: {
                    show: true,
                    position: ‘top‘
                }
            },
            areaStyle: {normal: {}},
            data:[820, 932, 901, 934, 1290, 1330, 1320]
        }
    ]

技术分享图片

 

 

当我设置 symbol:‘none‘ 之后,折线图上的数字就不见了?

series : [
        {
            name:‘搜索引擎‘,
            type:‘line‘,
            stack: ‘总量‘,
            label: {
                normal: {
                    show: true,
                    position: ‘top‘
                }
            },
            symbol:‘none‘,
            areaStyle: {normal: {}},
            data:[820, 932, 901, 934, 1290, 1330, 1320]
        }
    ]

技术分享图片

 

 

可能是一个bug。

后来用别的方法绕过了这个问题。

series : [
        {
            name:‘搜索引擎‘,
            type:‘line‘,
            stack: ‘总量‘,
            label: {
                normal: {
                    show: true,
                    position: ‘top‘
                }
            },
            symbol:‘circle‘,
            symbolSize:1,
            hoverAnimation:false,
            areaStyle: {normal: {}},
            data:[820, 932, 901, 934, 1290, 1330, 1320]
        }
    ]

技术分享图片

 

echarts爬坑 : 怎么Line折线图设置symbol:none后Label不见了?

原文:https://www.cnblogs.com/foxcharon/p/11817107.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!