美文网首页
echarts y轴,显示数据,但不显示竖线

echarts y轴,显示数据,但不显示竖线

作者: 安北分享 | 来源:发表于2021-08-10 11:49 被阅读0次

    在yAxis中插入:

    axisLine: {show:false},
    axisTick: {show:false},

    yAxis : [
                                    {
                                        show:true,
                                        axisLine: {show:false},
                                        axisTick: {show:false},
                                        splitLine:{show:false},
                                        type : 'value',
                                        min:"0",
                                        max:100,
                                        axisLabel:{
                                             formatter: function (value) {
                                                var texts = [];
                                                if(value==0){
                                                texts.push('发育异常');
                                                }
                                                else if (value ==100 ){
                                                texts.push('发育正常');
                                                }
                                                return texts;
                                            },
                                            textStyle: {
                                                color: '#fff'
                                            }
                                        },
                                        splitArea:{show:false}
                                    }
                                ],
    

    相关文章

      网友评论

          本文标题:echarts y轴,显示数据,但不显示竖线

          本文链接:https://www.haomeiwen.com/subject/gfmxbltx.html