echarts-反转坐标轴

yAxis : [
                            {
                                type: "value",
                                name: '                 面雨量(mm)',
                                nameLocation: 'start',  // 设置坐标轴名称显示位置
                                nameTextStyle: {        // 设置坐标轴名称的样式
                                    color: '#05c1e4',
                                    fontSize: 14
                                },
                                offset: 4,
                                min: 0,
                                max: 30,
                                interval: 10,
                                axisLabel: {
                                    color: "#05c1e4",
                                    fontSize: 12
                                },
                                axisLine: {
                                    show: false
                                },
                                axisTick: {
                                    show: false
                                },
                                inverse: true //反转坐标轴
                            }
               ]

inverse: true //反转坐标轴
inverse: true //反转坐标轴
inverse: true //反转坐标轴
 
原文地址:https://www.cnblogs.com/yeminglong/p/14015915.html