echart 配置详解

109 阅读1分钟

title

    text: "60%",  // 文本内容
    x:'center',   //  文字在容器内的坐标
    y:'center',   //  文字在容器内的坐标
    textStyle: {
      color: 'red',  // 文字颜色
      fontSize: 30   // 文字大小
    }
  },

series

type:图表类型
hoverAnimation: false, // 取消hover 事件
data:{ 
  value: 20,
  itemStyle: {
    normal: {
      shadowBlur: 10, // 阴影大小
      shadowColor: 'green' // 阴影颜色
    }
  }
},