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

the name of axis. 坐标轴名称。 More...

Inheritance diagram for XCharts.AxisName:
Collaboration diagram for XCharts.AxisName:

Public Types

enum  Location { Start, Middle, End }
 the location of axis name. 坐标轴名称显示位置。 More...
 

Public Member Functions

AxisName Clone ()
 
void Copy (AxisName axisName)
 
- 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 ()
 

Properties

bool show [get, set]
 Whether to show axis name. 是否显示坐标名称。 More...
 
string name [get, set]
 the name of axis. 坐标轴名称。 More...
 
Location location [get, set]
 Location of axis name. 坐标轴名称显示位置。 More...
 
TextStyle textStyle [get, set]
 The text style of axis name. 文本样式。 More...
 
static AxisName defaultAxisName [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

- Protected Attributes inherited from XCharts.ChartComponent
bool m_VertsDirty
 
bool m_ComponentDirty
 
Painter m_Painter
 

Detailed Description

the name of axis. 坐标轴名称。

Definition at line 18 of file AxisName.cs.

Member Enumeration Documentation

◆ Location

the location of axis name. 坐标轴名称显示位置。

Definition at line 24 of file AxisName.cs.

25  {
26  Start,
27  Middle,
28  End
29  }

Property Documentation

◆ location

Location XCharts.AxisName.location
getset

Location of axis name. 坐标轴名称显示位置。

Definition at line 58 of file AxisName.cs.

58  {
59  get { return m_Location; }
60  set { if (PropertyUtil.SetStruct(ref m_Location, value)) SetComponentDirty(); }
61  }

◆ name

string XCharts.AxisName.name
getset

the name of axis. 坐标轴名称。

Definition at line 49 of file AxisName.cs.

49  {
50  get { return m_Name; }
51  set { if (PropertyUtil.SetClass(ref m_Name, value)) SetComponentDirty(); }
52  }

◆ show

bool XCharts.AxisName.show
getset

Whether to show axis name. 是否显示坐标名称。

Definition at line 40 of file AxisName.cs.

40  {
41  get { return m_Show; }
42  set { if (PropertyUtil.SetStruct(ref m_Show, value)) SetComponentDirty(); }
43  }

◆ textStyle

TextStyle XCharts.AxisName.textStyle
getset

The text style of axis name. 文本样式。

Definition at line 68 of file AxisName.cs.

68  {
69  get { return m_TextStyle; }
70  set { if (PropertyUtil.SetClass(ref m_TextStyle, value)) SetComponentDirty(); }
71  }

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