@363045841yyt/klinechart 0.2.9 → 0.2.10

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.
@@ -12,13 +12,11 @@ export { getPhysicalKLineConfig, calcKWidthPx };
12
12
  * @property container 图表容器 div
13
13
  * @property canvasLayer Canvas 层容器 div(包含所有绘制 canvas)
14
14
  * @property xAxisCanvas X 轴时间轴 canvas
15
- * @property borderCanvas 全局边框 canvas(可选,由 Chart 内部创建)
16
15
  */
17
16
  export type ChartDom = {
18
17
  container: HTMLDivElement;
19
18
  canvasLayer: HTMLDivElement;
20
19
  xAxisCanvas: HTMLCanvasElement;
21
- borderCanvas?: HTMLCanvasElement;
22
20
  };
23
21
  /**
24
22
  * Pane 面板配置
@@ -106,7 +106,7 @@ export declare class InteractionController {
106
106
  /** 处理滚动事件 */
107
107
  onScroll(): void;
108
108
  /**
109
- * [触屏]:处理 Pointer 移动事件
109
+ * 处理 Pointer 移动事件(支持鼠标和触屏)
110
110
  * @param e PointerEvent
111
111
  */
112
112
  onPointerMove(e: PointerEvent): void;