@barchart/chart-lib 2.402.0 → 2.403.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.
chart-lib/barchart.chart.d.ts
CHANGED
|
@@ -2798,6 +2798,8 @@ declare module "@barchart/chart-lib" {
|
|
|
2798
2798
|
}
|
|
2799
2799
|
|
|
2800
2800
|
export interface StudyInput {
|
|
2801
|
+
/** Discrete numeric input; normalized with Math.ceil at the model boundary. */
|
|
2802
|
+
integer?: boolean;
|
|
2801
2803
|
/** Name of the input parameter. */
|
|
2802
2804
|
name: string;
|
|
2803
2805
|
/** Value of the input parameter. */
|
|
@@ -2899,6 +2901,8 @@ declare module "@barchart/chart-lib" {
|
|
|
2899
2901
|
balanceSheets: BalanceSheet[];
|
|
2900
2902
|
studyFields: StudyField[];
|
|
2901
2903
|
curveStyles: CurveStyle[];
|
|
2904
|
+
/** Input defaults, including integer declarations, for configurable curve styles. */
|
|
2905
|
+
curveStyleInputs: Partial<Record<CurveStyle, StudyInput[]>>;
|
|
2902
2906
|
annotations: AnnotationConfig[];
|
|
2903
2907
|
}
|
|
2904
2908
|
|