|
bool | UpdateMax (int serieIndex, int dataIndex, double value) |
| 更新指定系列执行数据项的最大值 More...
|
|
bool | UpdateMax (int serieIndex, double value) |
| 更新指定系列的所有数据项的最大值 More...
|
|
bool | UpdateMax (double value) |
| 更新第一个系列第一个数据项的最大值 More...
|
|
override SerieData | AddData (string serieName, double value, double max, string dataName=null) |
| Adds the data with the specified maximum value to the specified serie. 添加指定最大值的数据到指定系列中。 More...
|
|
override SerieData | AddData (int serieIndex, double value, double max, string dataName=null) |
| Adds the data with the specified maximum value to the specified serie. 添加指定最大值的数据到指定系列中。 More...
|
|
Definition at line 10 of file RingChart_API.cs.
◆ AddData() [1/2]
override SerieData XCharts.RingChart.AddData |
( |
int |
serieIndex, |
|
|
double |
value, |
|
|
double |
max, |
|
|
string |
dataName = null |
|
) |
| |
|
inline |
Adds the data with the specified maximum value to the specified serie. 添加指定最大值的数据到指定系列中。
- Parameters
-
serieIndex | the index of serie |
value | the data |
max | the max data |
dataName | the name of data |
- Returns
- Returns True on success
Definition at line 83 of file RingChart_API.cs.
85 return base.AddData(serieIndex, value, max, dataName);
◆ AddData() [2/2]
override SerieData XCharts.RingChart.AddData |
( |
string |
serieName, |
|
|
double |
value, |
|
|
double |
max, |
|
|
string |
dataName = null |
|
) |
| |
|
inline |
Adds the data with the specified maximum value to the specified serie. 添加指定最大值的数据到指定系列中。
- Parameters
-
serieName | the name of serie |
value | the data |
max | the max data |
dataName | the name of data |
- Returns
- Returns True on success
Definition at line 69 of file RingChart_API.cs.
71 return base.AddData(serieName, value, max, dataName);
◆ UpdateMax() [1/3]
bool XCharts.RingChart.UpdateMax |
( |
double |
value | ) |
|
|
inline |
◆ UpdateMax() [2/3]
bool XCharts.RingChart.UpdateMax |
( |
int |
serieIndex, |
|
|
double |
value |
|
) |
| |
|
inline |
更新指定系列的所有数据项的最大值
- Parameters
-
- Returns
Definition at line 35 of file RingChart_API.cs.
37 var serie = m_Series.GetSerie(serieIndex);
41 for (
int i = 0; i < serie.dataCount; i++)
43 if (serie.UpdateData(i, 1, value)) flag =
false;
◆ UpdateMax() [3/3]
bool XCharts.RingChart.UpdateMax |
( |
int |
serieIndex, |
|
|
int |
dataIndex, |
|
|
double |
value |
|
) |
| |
|
inline |
更新指定系列执行数据项的最大值
- Parameters
-
serieIndex | |
dataIndex | |
value | |
- Returns
Definition at line 19 of file RingChart_API.cs.
21 var serie = m_Series.GetSerie(serieIndex);
24 return serie.UpdateData(dataIndex, 1, value);
The documentation for this class was generated from the following file: