@qfo/qfchart 0.8.2 → 0.8.5

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/index.d.ts CHANGED
@@ -415,6 +415,16 @@ declare class QFChart implements ChartContext {
415
415
  removeIndicator(id: string): void;
416
416
  toggleIndicator(id: string, action?: 'collapse' | 'maximize' | 'fullscreen'): void;
417
417
  resize(): void;
418
+ /**
419
+ * Build invisible "scatter" series that carry the min/max Y values of Pine
420
+ * Script drawing objects (lines, boxes, labels, polylines). ECharts includes
421
+ * these points in its automatic Y-axis range calculation so drawings below
422
+ * or above the candlestick range are no longer clipped.
423
+ *
424
+ * Returns one hidden series per pane that has drawing objects with Y-values
425
+ * outside the default data range.
426
+ */
427
+ private _buildDrawingRangeHints;
418
428
  /**
419
429
  * Build table canvas graphic elements from the current _lastTables.
420
430
  * Must be called AFTER setOption so grid rects are available from ECharts.