fixed bug

This commit is contained in:
monitor1394
2019-10-13 17:58:31 +08:00
parent 0ecb0913d1
commit c54c8e60d2

View File

@@ -47,6 +47,11 @@ namespace XCharts
/// </summary>
public float chartHeight { get { return m_ChartHeight; } }
/// <summary>
/// The postion of pointer.
/// 鼠标位置
/// </summary>
public Vector2 pointerPos { get; protected set; }
/// <summary>
/// 自定义绘制回调。
/// </summary>
public Action<VertexHelper> customDrawCallback { set { m_CustomDrawCallback = value; } }