@progress/kendo-charts 2.3.0-dev.202402161315 → 2.3.0-dev.202403071434
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 +252 -29
- package/dist/es/sankey/link.js +4 -4
- package/dist/es/sankey/sankey.js +72 -13
- package/dist/es/sankey/title.js +0 -1
- package/dist/es2015/sankey/calculation.js +235 -27
- package/dist/es2015/sankey/link.js +3 -3
- package/dist/es2015/sankey/sankey.js +72 -14
- package/dist/es2015/sankey/title.js +0 -1
- package/dist/npm/main.js +328 -47
- package/dist/npm/sankey.d.ts +8 -0
- package/dist/systemjs/kendo-charts.js +1 -1
- package/package.json +1 -1
package/dist/npm/sankey.d.ts
CHANGED
|
@@ -197,6 +197,13 @@ export interface SankeyNode {
|
|
|
197
197
|
* @default 24
|
|
198
198
|
*/
|
|
199
199
|
width?: number;
|
|
200
|
+
|
|
201
|
+
/**
|
|
202
|
+
* The alignment of the node.
|
|
203
|
+
*
|
|
204
|
+
* @default 'stretch'
|
|
205
|
+
*/
|
|
206
|
+
align?: 'stretch' | 'left' | 'right';
|
|
200
207
|
}
|
|
201
208
|
|
|
202
209
|
/**
|
|
@@ -229,6 +236,7 @@ export interface SankeyOptions {
|
|
|
229
236
|
labels?: SankeyLabelDefaults;
|
|
230
237
|
links?: SankeyLinkDefaults;
|
|
231
238
|
nodes?: SankeyNodeDefaults;
|
|
239
|
+
disableAutoLayout?: boolean;
|
|
232
240
|
}
|
|
233
241
|
|
|
234
242
|
export interface SankeyTheme {
|