mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-27 11:31:39 +00:00
修复Label显示异常的问题
This commit is contained in:
@@ -102,10 +102,11 @@ namespace XCharts
|
|||||||
/// 标志位置。
|
/// 标志位置。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Vector3 labelPosition { get; set; }
|
public Vector3 labelPosition { get; set; }
|
||||||
|
public bool m_CanShowLabel = true;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 是否可以显示Label
|
/// 是否可以显示Label
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool canShowLabel { get; set; }
|
public bool canShowLabel { get { return m_CanShowLabel; } set { m_CanShowLabel = value; } }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// the maxinum value.
|
/// the maxinum value.
|
||||||
/// 最大值。
|
/// 最大值。
|
||||||
|
|||||||
Reference in New Issue
Block a user