@barchart/chart-lib 2.190.0 → 2.191.0

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.
@@ -1082,6 +1082,8 @@ declare module "@barchart/chart-lib" {
1082
1082
  * @default 2
1083
1083
  */
1084
1084
  lineWidth?: number;
1085
+ /** The line style (dotted, dashed, solid...) */
1086
+ dashStyle?: DashStyle;
1085
1087
  /** Does the color of the drawing vary from bar to bar (as time passes) or not.
1086
1088
  * @default false
1087
1089
  */
@@ -1286,7 +1288,8 @@ declare module "@barchart/chart-lib" {
1286
1288
  symbol?: string;
1287
1289
  type: PlotType;
1288
1290
  expression?: string;
1289
- leftScale?: boolean;
1291
+ leftScale?: boolean; // NOTE: deprecated, use oppositeScale instead
1292
+ oppositeScale?: boolean;
1290
1293
  curves?: Curve[];
1291
1294
  }
1292
1295