@progress/kendo-charts 2.3.0-dev.202403271344 → 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.
@@ -254,14 +254,6 @@ export interface SankeyLegend {
254
254
  * Represents the tooltips options of the Sankey widget.
255
255
  */
256
256
  export interface SankeyTooltips {
257
- /**
258
- * The horizontal distance between the tooltip and the mouse pointer.
259
- * The distance is measured in pixels.
260
- *
261
- * @default 10
262
- */
263
- offset?: number;
264
-
265
257
  /**
266
258
  * Indicates whether the tooltip will follow the mouse pointer.
267
259
  *
@@ -410,14 +402,9 @@ export interface SankeyTooltipEvent extends SankeyEvent {
410
402
  popupAlign: { horizontal: string, vertical: string };
411
403
  };
412
404
 
413
- /**
414
- * The tooltip target element type.
415
- */
416
- tooltipTargetType: 'node' | 'link';
417
-
418
405
  /**
419
406
  * The target element value.
420
- * Available for the `node` tooltipTargetType.
407
+ * Available for the `node` target type.
421
408
  */
422
409
  nodeValue?: number;
423
410
  }