let $zoneOption = {
            chart: {
              // zoomType: 'x',
              // borderWidth: 0,
            },
            credits: {
              enabled: false,
            },
            title: {
              text: this.$config.zoneStr + '降雨分布图',
            },
            xAxis: [
              {
                // categories: $xData,
                type: 'category',
                labels: {
                  rotation: 45,
                },
              },
            ],
            yAxis: {
              type: 'value',
              labels: {
                formatter: function () {
                  console.log(this)
                  return this.value
                },
                style: {
                  color: '#89A54E',
                },
              },
              title: {
                text: '降雨量(毫米)',
                style: {
                  color: '#4572A7',
                },
              },
              // opposite: false,
              min: $zoneMin,
              max: $zoneMax,
            },
            legend: {
              enabled: false,
            },
            series: [
              {
                name: '降雨量',
                color: '#4572A7',
                type: 'column',
                data: $zoneData,
                dataLabels: {
                  enabled: true,
                  // rotation: -90,
                  color: '#4572A7',
                  align: 'center',
                  x: 5,
                  y: -30,
                  style: {
                    fontSize: '13px',
                    fontFamily: 'Verdana, sans-serif',
                  },
                  // formatter: function () {
                  //   return this.y == maxLabel && maxLabel > 0
                  //     ? this.y.toFixed(1)
                  //     : ''
                  // },
                },
                // tooltip: {
                //   valueDecimals: 1,
                //   valueSuffix: '毫米',
                //   style: {
                //     fontFamily: '宋体',
                //     fontSize: '13px',
                //   },
                // },
              },
            ],
          } // 放入各站雨量分布柱状图