@progress/kendo-charts 2.3.0-dev.202404070723 → 2.3.0-dev.202404081747

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.
@@ -360,9 +360,9 @@ export interface SankeyLegend {
360
360
  }
361
361
 
362
362
  /**
363
- * Represents the tooltips options of the Sankey widget.
363
+ * Represents the tooltip options of the Sankey widget.
364
364
  */
365
- export interface SankeyTooltips {
365
+ export interface SankeyTooltip {
366
366
  /**
367
367
  * Indicates whether the tooltip will follow the mouse pointer.
368
368
  *
@@ -412,14 +412,14 @@ export interface SankeyOptions {
412
412
  disableAutoLayout?: boolean;
413
413
  title?: SankeyTitle;
414
414
  legend?: SankeyLegend;
415
- tooltips?: SankeyTooltips;
415
+ tooltip?: SankeyTooltip;
416
416
  }
417
417
 
418
418
  export interface SankeyTheme {
419
419
  labels?: SankeyLabelDefaults;
420
420
  links?: SankeyLinkDefaults;
421
421
  nodes?: SankeyNodeDefaults;
422
- nodesColors: string[];
422
+ nodeColors: string[];
423
423
  }
424
424
 
425
425
  /**