增加虚线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

@@ -69,13 +69,21 @@ namespace XCharts
/// </summary>
Solid,
/// <summary>
/// 破折线
/// 线
/// </summary>
Dashed,
/// <summary>
/// 线
/// 线
/// </summary>
Dotted
Dotted,
/// <summary>
/// 点划线
/// </summary>
DashDot,
/// <summary>
/// 双点划线
/// </summary>
DashDotDot
}
[SerializeField] protected bool m_Show = true;

View File

@@ -92,7 +92,23 @@ namespace XCharts
/// step line.
/// 阶梯线图:下一个拐点。
/// </summary>
StepEnd
StepEnd,
/// <summary>
/// 虚线
/// </summary>
Dash,
/// <summary>
/// 点线
/// </summary>
Dot,
/// <summary>
/// 点划线
/// </summary>
DashDot,
/// <summary>
/// 双点划线
/// </summary>
DashDotDot
}
/// <summary>