AirControl  1.3.0
Open Source, Modular, and Extensible Flight Simulator For Deep Learning Research
XCharts.MarkLine Class Reference

Use a line in the chart to illustrate. 图表标线。 More...

Inheritance diagram for XCharts.MarkLine:
Collaboration diagram for XCharts.MarkLine:

Properties

bool show [get, set]
 Whether to display the marking line. 是否显示标线。 More...
 
SerieAnimation animation [get, set]
 The animation of markline. 标线的动画样式。 More...
 
List< MarkLineDatadata [get, set]
 A list of marked data. When the group of data item is 0, each data item represents a line; When the group is not 0, two data items of the same group represent the starting point and the ending point of the line respectively to form a line. In this case, the relevant style parameters of the line are the parameters of the starting point. 标线的数据列表。当数据项的group为0时,每个数据项表示一条标线;当group不为0时,相同group的两个数据项分别表 示标线的起始点和终止点来组成一条标线,此时标线的相关样式参数取起始点的参数。 More...
 
static MarkLine defaultMarkLine [get]
 
- Properties inherited from XCharts.ChartComponent
virtual bool vertsDirty [get]
 图表重绘标记。 More...
 
virtual bool componentDirty [get]
 组件重新初始化标记。 More...
 
bool anyDirty [get]
 需要重绘图表或重新初始化组件。 More...
 
Painter painter [get, set]
 
Action refreshComponent [get, set]
 
GameObject gameObject [get, set]
 

Additional Inherited Members

- Public Member Functions inherited from XCharts.ChartComponent
virtual void SetVerticesDirty ()
 
virtual void ClearVerticesDirty ()
 
virtual void SetComponentDirty ()
 
virtual void ClearComponentDirty ()
 
virtual void ClearDirty ()
 
virtual void SetAllDirty ()
 
- Protected Attributes inherited from XCharts.ChartComponent
bool m_VertsDirty
 
bool m_ComponentDirty
 
Painter m_Painter
 

Detailed Description

Use a line in the chart to illustrate. 图表标线。

Definition at line 197 of file MarkLine.cs.

Property Documentation

◆ animation

SerieAnimation XCharts.MarkLine.animation
getset

The animation of markline. 标线的动画样式。

Definition at line 217 of file MarkLine.cs.

217  {
218  get { return m_Animation; }
219  set { if (PropertyUtil.SetClass(ref m_Animation, value)) SetVerticesDirty(); }
220  }

◆ data

List<MarkLineData> XCharts.MarkLine.data
getset

A list of marked data. When the group of data item is 0, each data item represents a line; When the group is not 0, two data items of the same group represent the starting point and the ending point of the line respectively to form a line. In this case, the relevant style parameters of the line are the parameters of the starting point. 标线的数据列表。当数据项的group为0时,每个数据项表示一条标线;当group不为0时,相同group的两个数据项分别表 示标线的起始点和终止点来组成一条标线,此时标线的相关样式参数取起始点的参数。

Definition at line 230 of file MarkLine.cs.

230  {
231  get { return m_Data; }
232  set { if (PropertyUtil.SetClass(ref m_Data, value)) SetVerticesDirty(); }
233  }

◆ show

bool XCharts.MarkLine.show
getset

Whether to display the marking line. 是否显示标线。

Definition at line 208 of file MarkLine.cs.

208  {
209  get { return m_Show; }
210  set { if (PropertyUtil.SetStruct(ref m_Show, value)) SetVerticesDirty(); }
211  }

The documentation for this class was generated from the following file: