We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0abe7b commit 423b79aCopy full SHA for 423b79a
src/charting/utils/ColorTemplate.ts
@@ -11,13 +11,13 @@ export class ColorTemplate {
11
/**
12
* an "invalid" color that indicates that no color is set
13
*/
14
- public static COLOR_NONE = null as any;
+ public static COLOR_NONE = new Color(-1);
15
16
17
* this "color" is used for the Legend creation and indicates that the next
18
* form should be skipped
19
20
- public static COLOR_SKIP = 0x00112234 as any;
+ public static COLOR_SKIP = new Color(0x00112234);
21
22
23
* THE COLOR THEMES ARE PREDEFINED (predefined color integer arrays), FEEL
0 commit comments