@progress/kendo-charts 2.3.0-dev.202403250947 → 2.3.0-dev.202404011240

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.
@@ -151,6 +151,17 @@ export interface SankeyLabel {
151
151
  * @default `{ top: 0, left: 0 }`
152
152
  */
153
153
  offset?: SankeyOffset;
154
+
155
+ /**
156
+ * The stroke of the label.
157
+ *
158
+ * @default `{ width: 1, lineJoin: 'round' }`
159
+ */
160
+ stroke?: {
161
+ color?: string;
162
+ width?: number;
163
+ lineJoin?: 'round' | 'bevel' | 'miter';
164
+ };
154
165
  }
155
166
 
156
167
  /**
@@ -243,14 +254,6 @@ export interface SankeyLegend {
243
254
  * Represents the tooltips options of the Sankey widget.
244
255
  */
245
256
  export interface SankeyTooltips {
246
- /**
247
- * The horizontal distance between the tooltip and the mouse pointer.
248
- * The distance is measured in pixels.
249
- *
250
- * @default 10
251
- */
252
- offset?: number;
253
-
254
257
  /**
255
258
  * Indicates whether the tooltip will follow the mouse pointer.
256
259
  *
@@ -399,14 +402,9 @@ export interface SankeyTooltipEvent extends SankeyEvent {
399
402
  popupAlign: { horizontal: string, vertical: string };
400
403
  };
401
404
 
402
- /**
403
- * The tooltip target element type.
404
- */
405
- tooltipTargetType: 'node' | 'link';
406
-
407
405
  /**
408
406
  * The target element value.
409
- * Available for the `node` tooltipTargetType.
407
+ * Available for the `node` target type.
410
408
  */
411
409
  nodeValue?: number;
412
410
  }