mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 13:30:10 +00:00
73 lines
2.2 KiB
C#
73 lines
2.2 KiB
C#
/************************************************/
|
|
/* */
|
|
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
/* https://github.com/monitor1394 */
|
|
/* */
|
|
/************************************************/
|
|
|
|
|
|
using UnityEngine;
|
|
|
|
namespace XCharts
|
|
{
|
|
/// <summary>
|
|
/// Settings related to axis tick.
|
|
/// 坐标轴刻度相关设置。
|
|
/// </summary>
|
|
[System.Serializable]
|
|
public class AxisTick : BaseLine
|
|
{
|
|
[SerializeField] private bool m_AlignWithLabel;
|
|
[SerializeField] private bool m_Inside;
|
|
|
|
/// <summary>
|
|
/// Align axis tick with label, which is available only when boundaryGap is set to be true in category axis.
|
|
/// 类目轴中在 boundaryGap 为 true 的时候有效,可以保证刻度线和标签对齐。
|
|
/// </summary>
|
|
public bool alignWithLabel
|
|
{
|
|
get { return m_AlignWithLabel; }
|
|
set { if (PropertyUtil.SetStruct(ref m_AlignWithLabel, value)) SetVerticesDirty(); }
|
|
}
|
|
/// <summary>
|
|
/// Set this to true so the axis labels face the inside direction.
|
|
/// 坐标轴刻度是否朝内,默认朝外。
|
|
/// </summary>
|
|
public bool inside
|
|
{
|
|
get { return m_Inside; }
|
|
set { if (PropertyUtil.SetStruct(ref m_Inside, value)) SetVerticesDirty(); }
|
|
}
|
|
|
|
public static AxisTick defaultTick
|
|
{
|
|
get
|
|
{
|
|
var tick = new AxisTick
|
|
{
|
|
m_Show = true,
|
|
m_AlignWithLabel = false,
|
|
m_Inside = false,
|
|
};
|
|
return tick;
|
|
}
|
|
}
|
|
|
|
public AxisTick Clone()
|
|
{
|
|
var axisTick = new AxisTick();
|
|
axisTick.show = show;
|
|
axisTick.alignWithLabel = alignWithLabel;
|
|
axisTick.inside = inside;
|
|
axisTick.lineStyle = lineStyle.Clone();
|
|
return axisTick;
|
|
}
|
|
|
|
public void Copy(AxisTick axisTick)
|
|
{
|
|
show = axisTick.show;
|
|
alignWithLabel = axisTick.alignWithLabel;
|
|
inside = axisTick.inside;
|
|
}
|
|
}
|
|
} |