Files
XCharts/Runtime/Internal/Misc/ISerieComponent.cs

11 lines
227 B
C#
Raw Normal View History

namespace XCharts.Runtime
{
/// <summary>
/// The interface for serie component.
2023-11-11 23:32:24 +08:00
/// ||可用于Serie的组件。
/// </summary>
public interface ISerieComponent
{
bool show { get; set; }
}
}