@texturehq/edges 1.38.0 → 1.39.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.
@@ -222,6 +222,11 @@ interface TooltipEventItem {
222
222
  interface TooltipSeries {
223
223
  label: string;
224
224
  value: number;
225
+ /**
226
+ * Lower bound for a min–max band series. When set, the tooltip renders the
227
+ * range `baselineValue–value` instead of a single value.
228
+ */
229
+ baselineValue?: number;
225
230
  /**
226
231
  * Optional y-axis coordinate (in data space) where the focus highlight
227
232
  * should be drawn for this series. Defaults to `value`. Used by stacked
@@ -222,6 +222,11 @@ interface TooltipEventItem {
222
222
  interface TooltipSeries {
223
223
  label: string;
224
224
  value: number;
225
+ /**
226
+ * Lower bound for a min–max band series. When set, the tooltip renders the
227
+ * range `baselineValue–value` instead of a single value.
228
+ */
229
+ baselineValue?: number;
225
230
  /**
226
231
  * Optional y-axis coordinate (in data space) where the focus highlight
227
232
  * should be drawn for this series. Defaults to `value`. Used by stacked