@visactor/vchart-types 2.0.5-alpha.8 → 2.0.5-alpha.9

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.
@@ -21,6 +21,7 @@ export declare abstract class BaseCrossHair<T extends ICartesianCrosshairSpec |
21
21
  private _clickLock?;
22
22
  private _hasActive?;
23
23
  private _onlyLockClick?;
24
+ private _pendingRenderAfterRendering?;
24
25
  get enableRemain(): boolean;
25
26
  private _limitBounds;
26
27
  constructor(spec: T, options: IComponentOption);
@@ -65,6 +66,9 @@ export declare abstract class BaseCrossHair<T extends ICartesianCrosshairSpec |
65
66
  private _handleTooltipShow;
66
67
  private _handleTooltipHideOrRelease;
67
68
  private _renderNextFrame;
69
+ private _renderStage;
70
+ private _isTransparentExternalCanvasStage;
71
+ private _clearPreviousComponents;
68
72
  protected _getAxisInfoByField<T = IAxis>(field: 'x' | 'y' | 'category' | 'value'): IAxisInfo<T>;
69
73
  onLayoutEnd(): void;
70
74
  protected _releaseEvent(): void;
@@ -77,4 +81,5 @@ export declare abstract class BaseCrossHair<T extends ICartesianCrosshairSpec |
77
81
  protected _hideByField(field: string): void;
78
82
  hide(): void;
79
83
  protected _getNeedClearVRenderComponents(): IGraphic[];
84
+ private _getNeedClearVRenderComponentBounds;
80
85
  }