@progress/kendo-charts 2.4.0-dev.202405290547 → 2.4.0-dev.202406110723
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/chart/legend/legend-layout.js +4 -2
- package/dist/es/common/deep-extend.js +5 -3
- package/dist/es/sankey/label.js +21 -7
- package/dist/es/sankey/legend.js +16 -4
- package/dist/es/sankey/link.js +11 -4
- package/dist/es/sankey/sankey.js +67 -15
- package/dist/es2015/chart/legend/legend-layout.js +4 -2
- package/dist/es2015/common/deep-extend.js +5 -3
- package/dist/es2015/sankey/label.js +19 -6
- package/dist/es2015/sankey/legend.js +15 -5
- package/dist/es2015/sankey/link.js +9 -4
- package/dist/es2015/sankey/sankey.js +66 -17
- package/dist/npm/main.js +122 -33
- package/dist/npm/sankey.d.ts +4 -0
- package/dist/systemjs/kendo-charts.js +1 -1
- package/package.json +1 -1
package/dist/npm/sankey.d.ts
CHANGED
|
@@ -580,6 +580,10 @@ export interface SankeyOptions {
|
|
|
580
580
|
* If set to `true`, the Sankey keyboard navigation will be disabled.
|
|
581
581
|
*/
|
|
582
582
|
disableKeyboardNavigation?: boolean;
|
|
583
|
+
/**
|
|
584
|
+
* If set to `true`, the Sankey will render from right to left.
|
|
585
|
+
*/
|
|
586
|
+
rtl?: boolean;
|
|
583
587
|
}
|
|
584
588
|
|
|
585
589
|
/**
|