@barchart/chart-lib 2.312.4 → 2.313.1

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.
@@ -1349,7 +1349,7 @@ declare module "@barchart/chart-lib" {
1349
1349
  gradient?: "linLighten" | "linDarken";
1350
1350
  };
1351
1351
 
1352
- export type LineMarker = "None" | "Circle" | "Square" | "TriangleUp" | "TriangleDown" | "Diamond";
1352
+ export type LineMarker = "Circle" | "Square" | "TriangleUp" | "TriangleDown" | "Diamond";
1353
1353
 
1354
1354
  /** Curve is the second most important concept of the chart. It's a smallest drawable unit of time-series data. Most plots consist of several curves, each using a portion of the time-series fields associated with the plot. */
1355
1355
  export interface Curve {
@@ -1368,6 +1368,8 @@ declare module "@barchart/chart-lib" {
1368
1368
  lineWidth?: number;
1369
1369
  /** The marker is a small symbol (like a circle, square, triangle etc.) which is drawn at each data point on the curve. */
1370
1370
  lineMarker?: LineMarker;
1371
+ /** The amount of smoothing to apply to the line; smaller numbers give tighter lines, larger produce more curves; good average value is 6. */
1372
+ lineSmoothing?: number;
1371
1373
  /** The line style (dotted, dashed, solid...) */
1372
1374
  dashStyle?: DashStyle;
1373
1375
  /** Does the color of the drawing vary from bar to bar (as time passes) or not.