mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 21:40:41 +00:00
20 lines
546 B
C#
20 lines
546 B
C#
/************************************************/
|
|
/* */
|
|
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
/* https://github.com/monitor1394 */
|
|
/* */
|
|
/************************************************/
|
|
|
|
namespace XCharts
|
|
{
|
|
/// <summary>
|
|
/// 分割线
|
|
/// </summary>
|
|
[System.Serializable]
|
|
public class GaugeAxisSplitLine : BaseLine
|
|
{
|
|
public GaugeAxisSplitLine(bool show) : base(show)
|
|
{
|
|
}
|
|
}
|
|
} |