|
|
| DataZoomTheme (Theme theme) |
| |
|
void | Copy (DataZoomTheme theme) |
| |
|
| ComponentTheme (Theme theme) |
| |
|
virtual void | Copy (ComponentTheme theme) |
| |
|
virtual void | Reset (ComponentTheme defaultTheme) |
| |
|
virtual void | SetVerticesDirty () |
| |
|
virtual void | ClearVerticesDirty () |
| |
|
virtual void | SetComponentDirty () |
| |
|
virtual void | ClearComponentDirty () |
| |
|
virtual void | ClearDirty () |
| |
|
virtual void | SetAllDirty () |
| |
|
|
float | m_BorderWidth |
| |
|
float | m_DataLineWidth |
| |
|
Color32 | m_FillerColor |
| |
|
Color32 | m_BorderColor |
| |
|
Color32 | m_DataLineColor |
| |
|
Color32 | m_DataAreaColor |
| |
|
Color32 | m_BackgroundColor |
| |
|
Font | m_Font |
| |
|
Color | m_TextColor |
| |
|
Color | m_TextBackgroundColor |
| |
|
int | m_FontSize = 18 |
| |
|
bool | m_VertsDirty |
| |
|
bool | m_ComponentDirty |
| |
|
Painter | m_Painter |
| |
|
| 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...
|
| |
| 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...
|
| |
| 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] |
| |
Definition at line 14 of file DataZoomTheme.cs.
◆ backgroundColor
| Color32 XCharts.DataZoomTheme.backgroundColor |
|
getset |
the background color of datazoom. 背景颜色。
Definition at line 84 of file DataZoomTheme.cs.
85 get {
return m_BackgroundColor; }
86 set {
if (PropertyUtil.SetColor(ref m_BackgroundColor, value)) SetComponentDirty(); }
◆ borderColor
| Color32 XCharts.DataZoomTheme.borderColor |
|
getset |
the color of dataZoom border. 边框颜色。
Definition at line 57 of file DataZoomTheme.cs.
58 get {
return m_BorderColor; }
59 set {
if (PropertyUtil.SetColor(ref m_BorderColor, value)) SetComponentDirty(); }
◆ borderWidth
| float XCharts.DataZoomTheme.borderWidth |
|
getset |
the width of border line. 边框线宽。
Definition at line 29 of file DataZoomTheme.cs.
30 get {
return m_BorderWidth; }
31 set {
if (PropertyUtil.SetStruct(ref m_BorderWidth, value)) SetVerticesDirty(); }
◆ dataAreaColor
| Color32 XCharts.DataZoomTheme.dataAreaColor |
|
getset |
the color of data area line. 数据阴影的填充颜色。
Definition at line 75 of file DataZoomTheme.cs.
76 get {
return m_DataAreaColor; }
77 set {
if (PropertyUtil.SetColor(ref m_DataAreaColor, value)) SetComponentDirty(); }
◆ dataLineColor
| Color32 XCharts.DataZoomTheme.dataLineColor |
|
getset |
the color of data area line. 数据阴影的线条颜色。
Definition at line 66 of file DataZoomTheme.cs.
67 get {
return m_DataLineColor; }
68 set {
if (PropertyUtil.SetColor(ref m_DataLineColor, value)) SetComponentDirty(); }
◆ dataLineWidth
| float XCharts.DataZoomTheme.dataLineWidth |
|
getset |
the width of data line. 数据阴影线宽。
Definition at line 38 of file DataZoomTheme.cs.
39 get {
return m_DataLineWidth; }
40 set {
if (PropertyUtil.SetStruct(ref m_DataLineWidth, value)) SetVerticesDirty(); }
◆ fillerColor
| Color32 XCharts.DataZoomTheme.fillerColor |
|
getset |
the color of dataZoom data area. 数据区域颜色。
Definition at line 47 of file DataZoomTheme.cs.
48 get {
return m_FillerColor; }
49 set {
if (PropertyUtil.SetColor(ref m_FillerColor, value)) SetVerticesDirty(); }
The documentation for this class was generated from the following file: