@progress/kendo-charts 2.3.0-dev.202403250947 → 2.3.0-dev.202403271344

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.
@@ -151,6 +151,17 @@ export interface SankeyLabel {
151
151
  * @default `{ top: 0, left: 0 }`
152
152
  */
153
153
  offset?: SankeyOffset;
154
+
155
+ /**
156
+ * The stroke of the label.
157
+ *
158
+ * @default `{ width: 1, lineJoin: 'round' }`
159
+ */
160
+ stroke?: {
161
+ color?: string;
162
+ width?: number;
163
+ lineJoin?: 'round' | 'bevel' | 'miter';
164
+ };
154
165
  }
155
166
 
156
167
  /**