@opendata-ai/openchart-core 7.0.0 → 7.0.2
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/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/types/spec.ts +2 -0
package/package.json
CHANGED
package/src/types/spec.ts
CHANGED
|
@@ -1502,6 +1502,8 @@ export interface LayerSpec<TData extends DataRow = DataRow> {
|
|
|
1502
1502
|
resolve?: ResolveConfig;
|
|
1503
1503
|
/** Hidden series names. */
|
|
1504
1504
|
hiddenSeries?: string[];
|
|
1505
|
+
/** Endpoint labels column, inherited by child layers that don't set their own. */
|
|
1506
|
+
endpointLabels?: boolean | EndpointLabelsConfig;
|
|
1505
1507
|
/** Animation configuration. */
|
|
1506
1508
|
animation?: AnimationSpec;
|
|
1507
1509
|
}
|