@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.
@@ -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 {