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

Settings related to axis line. 坐标轴轴线。 More...

Inheritance diagram for XCharts.AxisLine:
Collaboration diagram for XCharts.AxisLine:

Public Member Functions

AxisLine Clone ()
 
void Copy (AxisLine axisLine)
 
- Public Member Functions inherited from XCharts.BaseLine
 BaseLine (bool show)
 
void Copy (BaseLine axisLine)
 
LineStyle.Type GetType (LineStyle.Type themeType)
 
float GetWidth (float themeWidth)
 
float GetLength (float themeLength)
 
Color32 GetColor (Color32 themeColor)
 
- 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 onZero [get, set]
 When mutiple axes exists, this option can be used to specify which axis can be "onZero" to. X 轴或者 Y 轴的轴线是否在另一个轴的 0 刻度上,只有在另一个轴为数值轴且包含 0 刻度时有效。 More...
 
bool showArrow [get, set]
 Whether to show the arrow symbol of axis. 是否显示箭头。 More...
 
Arrow arrow [get, set]
 the arrow of line. 轴线箭头。 More...
 
static AxisLine defaultAxisLine [get]
 
- Properties inherited from XCharts.BaseLine
bool show [get, set]
 Set this to false to prevent the axis line from showing. 是否显示坐标轴轴线。 More...
 
LineStyle lineStyle [get, set]
 线条样式 More...
 
static BaseLine defaultBaseLine [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.BaseLine
bool m_Show
 
LineStyle m_LineStyle = new LineStyle()
 
- Protected Attributes inherited from XCharts.ChartComponent
bool m_VertsDirty
 
bool m_ComponentDirty
 
Painter m_Painter
 

Detailed Description

Settings related to axis line. 坐标轴轴线。

Definition at line 17 of file AxisLine.cs.

Property Documentation

◆ arrow

Arrow XCharts.AxisLine.arrow
getset

the arrow of line. 轴线箭头。

Definition at line 46 of file AxisLine.cs.

46  {
47  get { return m_Arrow; }
48  set { if (PropertyUtil.SetClass(ref m_Arrow, value)) SetVerticesDirty(); }
49  }

◆ onZero

bool XCharts.AxisLine.onZero
getset

When mutiple axes exists, this option can be used to specify which axis can be "onZero" to. X 轴或者 Y 轴的轴线是否在另一个轴的 0 刻度上,只有在另一个轴为数值轴且包含 0 刻度时有效。

Definition at line 28 of file AxisLine.cs.

28  {
29  get { return m_OnZero; }
30  set { if (PropertyUtil.SetStruct(ref m_OnZero, value)) SetVerticesDirty(); }
31  }

◆ showArrow

bool XCharts.AxisLine.showArrow
getset

Whether to show the arrow symbol of axis. 是否显示箭头。

Definition at line 37 of file AxisLine.cs.

37  {
38  get { return m_ShowArrow; }
39  set { if (PropertyUtil.SetStruct(ref m_ShowArrow, value)) SetVerticesDirty(); }
40  }

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