@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/dist/index.d.ts
CHANGED
|
@@ -1487,6 +1487,8 @@ interface LayerSpec<TData extends DataRow = DataRow> {
|
|
|
1487
1487
|
resolve?: ResolveConfig;
|
|
1488
1488
|
/** Hidden series names. */
|
|
1489
1489
|
hiddenSeries?: string[];
|
|
1490
|
+
/** Endpoint labels column, inherited by child layers that don't set their own. */
|
|
1491
|
+
endpointLabels?: boolean | EndpointLabelsConfig;
|
|
1490
1492
|
/** Animation configuration. */
|
|
1491
1493
|
animation?: AnimationSpec;
|
|
1492
1494
|
}
|