AirControl  1.3.0
Open Source, Modular, and Extensible Flight Simulator For Deep Learning Research
XCharts.DataZoomTheme Class Reference
Inheritance diagram for XCharts.DataZoomTheme:
Collaboration diagram for XCharts.DataZoomTheme:

Public Member Functions

 DataZoomTheme (Theme theme)
 
void Copy (DataZoomTheme theme)
 
- Public Member Functions inherited from XCharts.ComponentTheme
 ComponentTheme (Theme theme)
 
virtual void Copy (ComponentTheme theme)
 
virtual void Reset (ComponentTheme defaultTheme)
 
- 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

float m_BorderWidth
 
float m_DataLineWidth
 
Color32 m_FillerColor
 
Color32 m_BorderColor
 
Color32 m_DataLineColor
 
Color32 m_DataAreaColor
 
Color32 m_BackgroundColor
 
- Protected Attributes inherited from XCharts.ComponentTheme
Font m_Font
 
Color m_TextColor
 
Color m_TextBackgroundColor
 
int m_FontSize = 18
 
- Protected Attributes inherited from XCharts.ChartComponent
bool m_VertsDirty
 
bool m_ComponentDirty
 
Painter m_Painter
 

Properties

float borderWidth [get, set]
 the width of border line. 边框线宽。 More...
 
float dataLineWidth [get, set]
 the width of data line. 数据阴影线宽。 More...
 
Color32 fillerColor [get, set]
 the color of dataZoom data area. 数据区域颜色。 More...
 
Color32 borderColor [get, set]
 the color of dataZoom border. 边框颜色。 More...
 
Color32 dataLineColor [get, set]
 the color of data area line. 数据阴影的线条颜色。 More...
 
Color32 dataAreaColor [get, set]
 the color of data area line. 数据阴影的填充颜色。 More...
 
Color32 backgroundColor [get, set]
 the background color of datazoom. 背景颜色。 More...
 
- Properties inherited from XCharts.ComponentTheme
Font font [get, set]
 the font of text. 字体。 More...
 
Color textColor [get, set]
 the color of text. 文本颜色。 More...
 
Color textBackgroundColor [get, set]
 the color of text. 文本颜色。 More...
 
int fontSize [get, set]
 the font size of text. 文本字体大小。 More...
 
- 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]
 

Detailed Description

Definition at line 14 of file DataZoomTheme.cs.

Property Documentation

◆ backgroundColor

Color32 XCharts.DataZoomTheme.backgroundColor
getset

the background color of datazoom. 背景颜色。

Definition at line 84 of file DataZoomTheme.cs.

84  {
85  get { return m_BackgroundColor; }
86  set { if (PropertyUtil.SetColor(ref m_BackgroundColor, value)) SetComponentDirty(); }
87  }

◆ borderColor

Color32 XCharts.DataZoomTheme.borderColor
getset

the color of dataZoom border. 边框颜色。

Definition at line 57 of file DataZoomTheme.cs.

57  {
58  get { return m_BorderColor; }
59  set { if (PropertyUtil.SetColor(ref m_BorderColor, value)) SetComponentDirty(); }
60  }

◆ borderWidth

float XCharts.DataZoomTheme.borderWidth
getset

the width of border line. 边框线宽。

Definition at line 29 of file DataZoomTheme.cs.

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

◆ dataAreaColor

Color32 XCharts.DataZoomTheme.dataAreaColor
getset

the color of data area line. 数据阴影的填充颜色。

Definition at line 75 of file DataZoomTheme.cs.

75  {
76  get { return m_DataAreaColor; }
77  set { if (PropertyUtil.SetColor(ref m_DataAreaColor, value)) SetComponentDirty(); }
78  }

◆ dataLineColor

Color32 XCharts.DataZoomTheme.dataLineColor
getset

the color of data area line. 数据阴影的线条颜色。

Definition at line 66 of file DataZoomTheme.cs.

66  {
67  get { return m_DataLineColor; }
68  set { if (PropertyUtil.SetColor(ref m_DataLineColor, value)) SetComponentDirty(); }
69  }

◆ dataLineWidth

float XCharts.DataZoomTheme.dataLineWidth
getset

the width of data line. 数据阴影线宽。

Definition at line 38 of file DataZoomTheme.cs.

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

◆ fillerColor

Color32 XCharts.DataZoomTheme.fillerColor
getset

the color of dataZoom data area. 数据区域颜色。

Definition at line 47 of file DataZoomTheme.cs.

47  {
48  get { return m_FillerColor; }
49  set { if (PropertyUtil.SetColor(ref m_FillerColor, value)) SetVerticesDirty(); }
50  }

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