@opendata-ai/openchart-core 6.24.1 → 6.24.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 CHANGED
@@ -606,6 +606,8 @@ interface TextAnnotation extends AnnotationBase {
606
606
  };
607
607
  /** Background color behind the text. Useful for readability over chart lines. */
608
608
  background?: string;
609
+ /** Whether to show the paint-order stroke halo behind text. Default true. Set false for white text on colored backgrounds. */
610
+ halo?: boolean;
609
611
  }
610
612
  /**
611
613
  * Range annotation highlighting a region of the chart.
@@ -2067,6 +2069,8 @@ interface ResolvedLabel {
2067
2069
  };
2068
2070
  /** Background color behind the label text. */
2069
2071
  background?: string;
2072
+ /** Whether to show the paint-order stroke halo. Default true. */
2073
+ halo?: boolean;
2070
2074
  }
2071
2075
  /** A resolved annotation with computed pixel positions. */
2072
2076
  interface ResolvedAnnotation {