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

Public Member Functions

void Copy (SerieTheme theme)
 
 SerieTheme (Theme theme)
 
- 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_LineWidth
 
float m_LineSymbolSize
 
float m_LineSymbolSelectedSize
 
float m_ScatterSymbolSize
 
float m_ScatterSymbolSelectedSize
 
float m_PieTooltipExtraRadius
 
float m_PieSelectedOffset
 
Color32 m_CandlestickColor = new Color32(194, 53, 49, 255)
 
Color32 m_CandlestickColor0 = new Color32(49, 70, 86, 255)
 
float m_CandlestickBorderWidth = 1
 
Color32 m_CandlestickBorderColor = new Color32(194, 53, 49, 255)
 
Color32 m_CandlestickBorderColor0 = new Color32(49, 70, 86, 255)
 
- Protected Attributes inherited from XCharts.ChartComponent
bool m_VertsDirty
 
bool m_ComponentDirty
 
Painter m_Painter
 

Properties

float lineWidth [get, set]
 the color of text. 文本颜色。 More...
 
float lineSymbolSize [get, set]
 
float lineSymbolSelectedSize [get, set]
 
float scatterSymbolSize [get, set]
 
float scatterSymbolSelectedSize [get, set]
 
float? pieTooltipExtraRadius [get, set]
 饼图鼠标移到高亮时的额外半径 More...
 
float? pieSelectedOffset [get, set]
 饼图选中时的中心点偏移 More...
 
Color32 candlestickColor [get, set]
 K线图阳线(涨)填充色 More...
 
Color32 candlestickColor0 [get, set]
 K线图阴线(跌)填充色 More...
 
Color32 candlestickBorderColor [get, set]
 K线图阳线(跌)边框色 More...
 
Color32 candlestickBorderColor0 [get, set]
 K线图阴线(跌)边框色 More...
 
float? candlestickBorderWidth [get, set]
 K线图边框宽度 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 SerieTheme.cs.

Property Documentation

◆ candlestickBorderColor

Color32 XCharts.SerieTheme.candlestickBorderColor
getset

K线图阳线(跌)边框色

Definition at line 95 of file SerieTheme.cs.

95  {
96  get { return m_CandlestickBorderColor; }
97  set { if (PropertyUtil.SetColor(ref m_CandlestickBorderColor, value)) SetVerticesDirty(); }
98  }

◆ candlestickBorderColor0

Color32 XCharts.SerieTheme.candlestickBorderColor0
getset

K线图阴线(跌)边框色

Definition at line 103 of file SerieTheme.cs.

103  {
104  get { return m_CandlestickBorderColor0; }
105  set { if (PropertyUtil.SetColor(ref m_CandlestickBorderColor0, value)) SetVerticesDirty(); }
106  }

◆ candlestickBorderWidth

float? XCharts.SerieTheme.candlestickBorderWidth
getset

K线图边框宽度

Definition at line 112 of file SerieTheme.cs.

112  {
113  get { return m_CandlestickBorderWidth; }
114  set { if (PropertyUtil.SetStruct(ref m_CandlestickBorderWidth, value < 0 ? 0f : value)) SetVerticesDirty(); }
115  }

◆ candlestickColor

Color32 XCharts.SerieTheme.candlestickColor
getset

K线图阳线(涨)填充色

Definition at line 79 of file SerieTheme.cs.

79  {
80  get { return m_CandlestickColor; }
81  set { if (PropertyUtil.SetColor(ref m_CandlestickColor, value)) SetVerticesDirty(); }
82  }

◆ candlestickColor0

Color32 XCharts.SerieTheme.candlestickColor0
getset

K线图阴线(跌)填充色

Definition at line 87 of file SerieTheme.cs.

87  {
88  get { return m_CandlestickColor0; }
89  set { if (PropertyUtil.SetColor(ref m_CandlestickColor0, value)) SetVerticesDirty(); }
90  }

◆ lineWidth

float XCharts.SerieTheme.lineWidth
getset

the color of text. 文本颜色。

Definition at line 34 of file SerieTheme.cs.

34  {
35  get { return m_LineWidth; }
36  set { if (PropertyUtil.SetStruct(ref m_LineWidth, value)) SetVerticesDirty(); }
37  }

◆ pieSelectedOffset

float? XCharts.SerieTheme.pieSelectedOffset
getset

饼图选中时的中心点偏移

Definition at line 71 of file SerieTheme.cs.

71  {
72  get { return m_PieSelectedOffset; }
73  set { if (PropertyUtil.SetStruct(ref m_PieSelectedOffset, value < 0 ? 0f : value)) SetVerticesDirty(); }
74  }

◆ pieTooltipExtraRadius

float? XCharts.SerieTheme.pieTooltipExtraRadius
getset

饼图鼠标移到高亮时的额外半径

Definition at line 63 of file SerieTheme.cs.

63  {
64  get { return m_PieTooltipExtraRadius; }
65  set { if (PropertyUtil.SetStruct(ref m_PieTooltipExtraRadius, value < 0 ? 0f : value)) SetVerticesDirty(); }
66  }

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