@opendata-ai/openchart-core 6.9.0 → 6.10.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 +6 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/types/spec.ts +6 -0
package/package.json
CHANGED
package/src/types/spec.ts
CHANGED
|
@@ -226,6 +226,12 @@ export interface EncodingChannel {
|
|
|
226
226
|
axis?: AxisConfig;
|
|
227
227
|
/** Scale configuration. */
|
|
228
228
|
scale?: ScaleConfig;
|
|
229
|
+
/**
|
|
230
|
+
* Stacking behavior for quantitative channels (Vega-Lite aligned).
|
|
231
|
+
* - undefined | true | 'zero': stack (default, cumulative segments)
|
|
232
|
+
* - null | false: no stacking (grouped/dodged side-by-side)
|
|
233
|
+
*/
|
|
234
|
+
stack?: boolean | 'zero' | null;
|
|
229
235
|
}
|
|
230
236
|
|
|
231
237
|
/**
|