@barchart/chart-lib 2.317.0 → 2.317.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.
- chart-lib/barchart.chart.d.ts +8 -0
- chart-lib/barchart.chart.js +1 -1
- chart-lib/package.json +1 -1
chart-lib/barchart.chart.d.ts
CHANGED
|
@@ -1544,6 +1544,8 @@ declare module "@barchart/chart-lib" {
|
|
|
1544
1544
|
snapAnnotationsToPrices?: boolean;
|
|
1545
1545
|
nonEodLabelWithDate?: boolean;
|
|
1546
1546
|
ordinalName?: string;
|
|
1547
|
+
contractTransition?: LineTransition;
|
|
1548
|
+
cycleTransition?: LineTransition;
|
|
1547
1549
|
};
|
|
1548
1550
|
}
|
|
1549
1551
|
|
|
@@ -1792,6 +1794,12 @@ declare module "@barchart/chart-lib" {
|
|
|
1792
1794
|
width?: number;
|
|
1793
1795
|
}
|
|
1794
1796
|
|
|
1797
|
+
export interface LineTransition extends LineTrait {
|
|
1798
|
+
/** Whether the line transition is enabled or not. */
|
|
1799
|
+
/** @default false */
|
|
1800
|
+
enabled?: boolean;
|
|
1801
|
+
}
|
|
1802
|
+
|
|
1795
1803
|
interface FillTrait {
|
|
1796
1804
|
/** Fill color, no default. */
|
|
1797
1805
|
color?: string;
|