Kaynağa Gözat

自定义颜色

zhengnaiwen_citu 4 ay önce
ebeveyn
işleme
f754e1f4f3

+ 3 - 3
src/components/AutoComponents/ECharts/eCharts.js

@@ -46,7 +46,7 @@ class EChartsComponent {
       '#c49c94', '#f7b6d2', '#c7c7c7', '#dbdb8d', '#9edae5',
       '#393b79', '#637939', '#8c6d31', '#843c39', '#7b4173',
       '#5254a3', '#6baed6', '#9e9ac8', '#807dba', '#6a51a3'
-    ].slice(0, 20) // 确保只有20个颜色
+    ]
 
     const echartsInstance = ECharts.init(el)
     const handler = {
@@ -72,9 +72,9 @@ class EChartsComponent {
     return this.el
   }
 
-  // 可选:添加方法来更新默认颜色
+  // 更新默认颜色
   setDefaultColors (colors) {
-    this.defaultColors = colors.slice(0, 20) // 确保不超过20个颜色
+    this.defaultColors = colors
   }
 }