echarts 修改 showLoading 样式

  this.chartBox.showLoading({ // 打开
         text: '数据正在努力加载...', // 文本
         maskColor: 'rgba(0, 0, 0, 0)', // 加载遮罩背景颜色
         textColor: '#fff'  // 字体颜色
    })

  this.chartBox.hideLoading()  // 加载数据成功后隐藏

你可能感兴趣的:(echarts 修改 showLoading 样式)