增加虚线Dash、点线Dot、点划线DashDot、双点划线DashDotDot等类型的折线图支持

This commit is contained in:
monitor1394
2019-09-18 18:23:37 +08:00
parent 9f7d2583a3
commit b090d5d874
7 changed files with 10579 additions and 12708 deletions

View File

@@ -16,9 +16,26 @@ namespace XCharts
/// </summary>
public enum Type
{
/// <summary>
/// 实线
/// </summary>
Solid,
/// <summary>
/// 虚线
/// </summary>
Dashed,
Dotted
/// <summary>
/// 点线
/// </summary>
Dotted,
/// <summary>
/// 点划线
/// </summary>
DashDot,
/// <summary>
/// 双点划线
/// </summary>
DashDotDot,
}
[SerializeField] private bool m_Show = true;
[SerializeField] private Type m_Type = Type.Solid;