@progress/kendo-charts 2.2.0 → 2.3.0-dev.202402161315
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/sankey.js +84 -42
- package/dist/es2015/sankey/sankey.js +67 -23
- package/dist/npm/main.js +82 -41
- package/dist/npm/sankey.d.ts +22 -0
- package/dist/systemjs/kendo-charts.js +1 -1
- package/package.json +2 -1
package/dist/npm/sankey.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { Group } from '@progress/kendo-drawing';
|
|
2
|
+
|
|
1
3
|
/**
|
|
2
4
|
* Represents the highlight options of the Sankey links.
|
|
3
5
|
*/
|
|
@@ -236,6 +238,25 @@ export interface SankeyTheme {
|
|
|
236
238
|
nodesColors: string[];
|
|
237
239
|
}
|
|
238
240
|
|
|
241
|
+
/**
|
|
242
|
+
* Represents the options for exporting the Sankey visual.
|
|
243
|
+
*/
|
|
244
|
+
export interface SankeyExportVisualOptions {
|
|
245
|
+
/**
|
|
246
|
+
* The width of the exported visual.
|
|
247
|
+
*/
|
|
248
|
+
width?: number;
|
|
249
|
+
/**
|
|
250
|
+
* The height of the exported visual.
|
|
251
|
+
*/
|
|
252
|
+
height?: number;
|
|
253
|
+
/**
|
|
254
|
+
* The Sankey options to be used for the exported visual.
|
|
255
|
+
* The options will extend and override the Sankey configuration.
|
|
256
|
+
*/
|
|
257
|
+
options?: SankeyOptions;
|
|
258
|
+
}
|
|
259
|
+
|
|
239
260
|
/**
|
|
240
261
|
* Represents the Kendo Sankey widget.
|
|
241
262
|
*/
|
|
@@ -245,6 +266,7 @@ export class Sankey {
|
|
|
245
266
|
public setOptions(options: SankeyOptions): void;
|
|
246
267
|
public bind(event: any, handlers: any): void;
|
|
247
268
|
public unbind(event?: any, handlers?: any): void;
|
|
269
|
+
public exportVisual(options: SankeyExportVisualOptions): Group;
|
|
248
270
|
public destroy(): void;
|
|
249
271
|
}
|
|
250
272
|
|