微信小程序,在安卓手机上显示的,xy轴坐标上的数字的字体如何修改echarts 折线配置项内容和展示

微信小程序,在安卓手机上显示的,xy轴坐标上的数字的字体如何修改,太小了

配置项如下
      function initChart(canvas, width, height) {
  chart = echarts.init(canvas, null, {
    width: width,
    height: height
  });
  canvas.setChart(chart);

  var option = {
    title: {
      text: '销售趋势',
      left: 'left'
    },
    color: ["#37A2DA", ],
    legend: {
      data: ['销售额', ],
      top: 30,
      left: 'center',
      backgroundColor: 'orange',
      z: 100,
      show: true
    },
    grid: {
      containLabel: true
    },
    tooltip: {
      show: true,
      trigger: 'axis'
    },
    
    xAxis: {
      type: 'category',
      boundaryGap: false,
      data: ['1', '2', '3', '4', '5', '6', '7'],
      show: true
    },
    yAxis:{
      x: 'center',
      type: 'value',
      splitLine: {
        lineStyle: {
          type: 'dashed'
        }
      }, 
      rich: {},
      show: true
    },
    series: [{
      name: '销售额',
      type: 'line',
      smooth: true,
      data: [18, 36, 65, 30, 118, 40, 33],  
    },]
    
  };
    
  chart.setOption(option);
  return chart;
}

    
截图如下