@dwlf/charting 1.2.0 → 1.3.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.
- package/dist/charting/types.d.ts +9 -0
- package/dist/index.cjs +3 -3
- package/dist/index.js +281 -281
- package/package.json +1 -1
package/dist/charting/types.d.ts
CHANGED
|
@@ -78,6 +78,15 @@ export interface PaneSpec {
|
|
|
78
78
|
};
|
|
79
79
|
series: SeriesSpec[];
|
|
80
80
|
guides?: PaneGuide[];
|
|
81
|
+
/**
|
|
82
|
+
* When true, the pane is rendered without its right-edge y-axis tick
|
|
83
|
+
* labels. Useful for "marker band" panes that show events along the
|
|
84
|
+
* time axis but don't have a meaningful price/value scale to label.
|
|
85
|
+
*
|
|
86
|
+
* Has no effect on the pane's hover crosshair or its data — only the
|
|
87
|
+
* visible tick text and tick label positioning are skipped.
|
|
88
|
+
*/
|
|
89
|
+
hideYAxis?: boolean;
|
|
81
90
|
}
|
|
82
91
|
export interface ChartSpec {
|
|
83
92
|
panes: PaneSpec[];
|