Welcome to MLink Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
709 views
in Technique[技术] by (71.8m points)

eachart 折线图怎么单独设置折线图坐标轴的颜色或者去掉坐标轴线,保留分段?

clipboard.png
怎么区分坐标轴和区间值之间的颜色?或者隐掉坐标轴
yAxis: {

                    name:'调用次数',
                    type: 'value',
                    boundaryGap: [0, 0.01],
                    axisLine: {
                        lineStyle: {
                            color: '#333'
                        }
                    },
                    label:{
                        normal:{
                            textStyle:{
                                color:"#ff0"
                            }
                        }
                    },
                    
                    splitLine: {
                        show: true,
                        lineStyle: {
                            color: '#ECEFF2',
                            type: 'solid'
                        }
                    },

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

配置项手册已经说得很清楚了,如果配置项里面没有说明的功能就是没有办法直接做的的


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to MLink Developer Q&A Community for programmer and developer-Open, Learning and Share
...