@progress/kendo-charts 2.3.0-dev.202404070723 → 2.3.0-dev.202404121620
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/cdn/js/kendo-charts.js +1 -1
- package/dist/cdn/main.js +1 -1
- package/dist/es/sankey/calculation.js +15 -5
- package/dist/es/sankey/legend.js +2 -4
- package/dist/es/sankey/node.js +3 -3
- package/dist/es/sankey/sankey.js +44 -16
- package/dist/es2015/sankey/calculation.js +15 -5
- package/dist/es2015/sankey/legend.js +3 -4
- package/dist/es2015/sankey/node.js +3 -3
- package/dist/es2015/sankey/sankey.js +38 -16
- package/dist/npm/main.js +65 -28
- package/dist/npm/sankey.d.ts +4 -4
- package/dist/systemjs/kendo-charts.js +1 -1
- package/package.json +1 -1
package/dist/npm/sankey.d.ts
CHANGED
|
@@ -360,9 +360,9 @@ export interface SankeyLegend {
|
|
|
360
360
|
}
|
|
361
361
|
|
|
362
362
|
/**
|
|
363
|
-
* Represents the
|
|
363
|
+
* Represents the tooltip options of the Sankey widget.
|
|
364
364
|
*/
|
|
365
|
-
export interface
|
|
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
|
-
|
|
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
|
-
|
|
422
|
+
nodeColors: string[];
|
|
423
423
|
}
|
|
424
424
|
|
|
425
425
|
/**
|