mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-22 17:00:08 +00:00
11 lines
226 B
C#
11 lines
226 B
C#
|
|
namespace XCharts.Runtime
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// The interface for serie component.
|
||
|
|
/// |可用于Serie的组件。
|
||
|
|
/// </summary>
|
||
|
|
public interface ISerieComponent
|
||
|
|
{
|
||
|
|
bool show { get; set; }
|
||
|
|
}
|
||
|
|
}
|