@opendata-ai/openchart-core 6.16.0 → 6.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/types/table.ts +2 -0
package/dist/index.d.ts
CHANGED
|
@@ -149,6 +149,8 @@ interface ColumnConfig {
|
|
|
149
149
|
flag?: boolean;
|
|
150
150
|
/** Category colors: color-code the cell based on its categorical value. */
|
|
151
151
|
categoryColors?: CategoryColorsConfig;
|
|
152
|
+
/** When true, auto-assign palette colors to values not in categoryColors. Default: false. */
|
|
153
|
+
autoAssign?: boolean;
|
|
152
154
|
}
|
|
153
155
|
|
|
154
156
|
/**
|
package/package.json
CHANGED
package/src/types/table.ts
CHANGED
|
@@ -102,4 +102,6 @@ export interface ColumnConfig {
|
|
|
102
102
|
flag?: boolean;
|
|
103
103
|
/** Category colors: color-code the cell based on its categorical value. */
|
|
104
104
|
categoryColors?: CategoryColorsConfig;
|
|
105
|
+
/** When true, auto-assign palette colors to values not in categoryColors. Default: false. */
|
|
106
|
+
autoAssign?: boolean;
|
|
105
107
|
}
|