|
void | Copy (SerieTheme theme) |
|
| SerieTheme (Theme theme) |
|
virtual void | SetVerticesDirty () |
|
virtual void | ClearVerticesDirty () |
|
virtual void | SetComponentDirty () |
|
virtual void | ClearComponentDirty () |
|
virtual void | ClearDirty () |
|
virtual void | SetAllDirty () |
|
|
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) |
|
bool | m_VertsDirty |
|
bool | m_ComponentDirty |
|
Painter | m_Painter |
|
|
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...
|
|
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 SerieTheme.cs.
◆ candlestickBorderColor
Color32 XCharts.SerieTheme.candlestickBorderColor |
|
getset |
K线图阳线(跌)边框色
Definition at line 95 of file SerieTheme.cs.
96 get {
return m_CandlestickBorderColor; }
97 set {
if (PropertyUtil.SetColor(ref m_CandlestickBorderColor, value)) SetVerticesDirty(); }
◆ candlestickBorderColor0
Color32 XCharts.SerieTheme.candlestickBorderColor0 |
|
getset |
K线图阴线(跌)边框色
Definition at line 103 of file SerieTheme.cs.
104 get {
return m_CandlestickBorderColor0; }
105 set {
if (PropertyUtil.SetColor(ref m_CandlestickBorderColor0, value)) SetVerticesDirty(); }
◆ candlestickBorderWidth
float? XCharts.SerieTheme.candlestickBorderWidth |
|
getset |
K线图边框宽度
Definition at line 112 of file SerieTheme.cs.
113 get {
return m_CandlestickBorderWidth; }
114 set {
if (PropertyUtil.SetStruct(ref m_CandlestickBorderWidth, value < 0 ? 0f : value)) SetVerticesDirty(); }
◆ candlestickColor
Color32 XCharts.SerieTheme.candlestickColor |
|
getset |
K线图阳线(涨)填充色
Definition at line 79 of file SerieTheme.cs.
80 get {
return m_CandlestickColor; }
81 set {
if (PropertyUtil.SetColor(ref m_CandlestickColor, value)) SetVerticesDirty(); }
◆ candlestickColor0
Color32 XCharts.SerieTheme.candlestickColor0 |
|
getset |
K线图阴线(跌)填充色
Definition at line 87 of file SerieTheme.cs.
88 get {
return m_CandlestickColor0; }
89 set {
if (PropertyUtil.SetColor(ref m_CandlestickColor0, value)) SetVerticesDirty(); }
◆ lineWidth
float XCharts.SerieTheme.lineWidth |
|
getset |
the color of text. 文本颜色。
Definition at line 34 of file SerieTheme.cs.
35 get {
return m_LineWidth; }
36 set {
if (PropertyUtil.SetStruct(ref m_LineWidth, value)) SetVerticesDirty(); }
◆ pieSelectedOffset
float? XCharts.SerieTheme.pieSelectedOffset |
|
getset |
饼图选中时的中心点偏移
Definition at line 71 of file SerieTheme.cs.
72 get {
return m_PieSelectedOffset; }
73 set {
if (PropertyUtil.SetStruct(ref m_PieSelectedOffset, value < 0 ? 0f : value)) SetVerticesDirty(); }
◆ pieTooltipExtraRadius
float? XCharts.SerieTheme.pieTooltipExtraRadius |
|
getset |
饼图鼠标移到高亮时的额外半径
Definition at line 63 of file SerieTheme.cs.
64 get {
return m_PieTooltipExtraRadius; }
65 set {
if (PropertyUtil.SetStruct(ref m_PieTooltipExtraRadius, value < 0 ? 0f : value)) SetVerticesDirty(); }
The documentation for this class was generated from the following file: