@opendata-ai/openchart-core 6.25.1 → 6.25.3

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 CHANGED
@@ -885,6 +885,13 @@ interface ChartSpec {
885
885
  * - AnimationConfig: full control via enter/update/exit phases
886
886
  */
887
887
  animation?: AnimationSpec;
888
+ /**
889
+ * Render order within a LayerSpec. Higher values render on top.
890
+ * When omitted, layers render in array order (later layers paint on top).
891
+ * Axis assignment (left/right y) is always determined by array position,
892
+ * not zIndex.
893
+ */
894
+ zIndex?: number;
888
895
  }
889
896
  /**
890
897
  * Table specification: input for data table visualizations.