修复Label显示异常的问题

This commit is contained in:
monitor1394
2019-10-14 18:23:28 +08:00
parent 7c30b3a9bf
commit dfee8304c2

View File

@@ -102,10 +102,11 @@ namespace XCharts
/// 标志位置。
/// </summary>
public Vector3 labelPosition { get; set; }
public bool m_CanShowLabel = true;
/// <summary>
/// 是否可以显示Label
/// </summary>
public bool canShowLabel { get; set; }
public bool canShowLabel { get { return m_CanShowLabel; } set { m_CanShowLabel = value; } }
/// <summary>
/// the maxinum value.
/// 最大值。