diff --git a/Scripts/UI/Internal/BaseChart_API.cs b/Scripts/UI/Internal/BaseChart_API.cs
index 5226f9d8..29677271 100644
--- a/Scripts/UI/Internal/BaseChart_API.cs
+++ b/Scripts/UI/Internal/BaseChart_API.cs
@@ -47,6 +47,11 @@ namespace XCharts
///
public float chartHeight { get { return m_ChartHeight; } }
///
+ /// The postion of pointer.
+ /// 鼠标位置
+ ///
+ public Vector2 pointerPos { get; protected set; }
+ ///
/// 自定义绘制回调。
///
public Action customDrawCallback { set { m_CustomDrawCallback = value; } }