echart横坐标字体样式问题 xAxis属性问题

xAxis: [
  {
    type: "category",
    data: _this.problemCity.citys,
    axisTick: {
      alignWithLabel: true
    },
      axisLabel: {
          show: true,
          textStyle: {
              fontSize: '15',
              color: '#1f1f1f'
          }
      }
  }
],

网上查了直接写textStyle不顶用,nameTextStyle也不顶用,后面查了下还有这种方法  就好了主要加了

axisLabel: { show: true, textStyle: { fontSize: '15', color: '#1f1f1f' } }

你可能感兴趣的:(echarts)