1. 全局theme

    2. option设置

      1. interface option {
      2. color: string[] // 全局主题
      3. series: type[
      4. {
      5. type: string // 系列的类型
      6. color: string[] // 配色方案
      7. itemStyle: {
      8. color: string // 点的颜色
      9. }
      10. label: {
      11. show: boolean
      12. formatter: Function | string // 格式化
      13. }
      14. emphasis: { // 高亮
      15. itemStyle: any
      16. label: any
      17. }
      18. }
      19. ]
      20. }