|
void | SetLabelDirty () |
|
override void | ClearVerticesDirty () |
|
override void | SetAllDirty () |
|
override void | ClearDirty () |
|
void | ClearData () |
| 清空所有系列的数据 More...
|
|
double | GetData (int serieIndex, int dataIndex) |
| 获得指定序列指定索引的数据值 More...
|
|
double | GetCurrData (int serieIndex, int dataIndex) |
|
Serie | GetSerie (string name) |
| 获得指定系列名的第一个系列 More...
|
|
List< Serie > | GetSeries (string name) |
| 获得指定系列名的所有系列 More...
|
|
Serie | GetSerie (int index) |
| 获得指定索引的系列 More...
|
|
bool | Contains (string name) |
| 是否包含指定名字的系列 More...
|
|
bool | Contains (SerieType type) |
|
bool | RemoveSerie (string serieName) |
| Remove serie from series. 移除指定名字的系列。 More...
|
|
bool | RemoveSerie (int serieIndex) |
|
bool | RemoveSerie (Serie serie) |
|
void | RemoveAll () |
| Remove all serie from series. 移除所有系列。 More...
|
|
Serie | AddSerie (SerieType type, string serieName, bool show=true, bool addToHead=false) |
| 添加一个系列到列表中。 More...
|
|
Serie | InsertSerie (int index, SerieType type, string serieName, bool show=true) |
|
SerieData | AddData (string serieName, double value, string dataName=null) |
| 添加一个数据到指定系列的维度Y数据中 More...
|
|
SerieData | AddData (int index, double value, string dataName=null) |
| 添加一个数据到指定系列的维度Y中 More...
|
|
SerieData | AddData (int index, double open, double close, double lowest, double heighest, string dataName=null) |
| 添加[open, close, lowest, highest]数据 More...
|
|
SerieData | AddData (string serieName, double open, double close, double lowest, double heighest, string dataName=null) |
|
SerieData | AddData (string serieName, List< double > multidimensionalData, string dataName=null) |
| 添加一组数据到指定的系列中 More...
|
|
SerieData | AddData (int serieIndex, List< double > multidimensionalData, string dataName=null) |
| 添加一组数据到指定的系列中 More...
|
|
SerieData | AddXYData (string serieName, double xValue, double yValue, string dataName=null) |
| 添加(x,y)数据到指定的系列中 More...
|
|
SerieData | AddXYData (int index, double xValue, double yValue, string dataName=null) |
| 添加(x,y)数据到指定的系列中 More...
|
|
bool | UpdateData (string serieName, int dataIndex, double value) |
| 更新指定系列的维度Y数据 More...
|
|
bool | UpdateDataName (string serieName, int dataIndex, string dataName) |
| 更新指定系列的数据项名称 More...
|
|
bool | UpdateDataName (int serieIndex, int dataIndex, string dataName) |
| 更新指定系列的数据项名称 More...
|
|
bool | UpdateData (int serieIndex, int dataIndex, double value) |
| 更新指定系列的维度Y数据项的值 More...
|
|
bool | UpdateData (string serieName, int dataIndex, List< double > values) |
|
bool | UpdateData (int serieIndex, int dataIndex, List< double > values) |
|
bool | UpdateData (int serieIndex, int dataIndex, int dimension, double value) |
| 更新指定系列指定数据项指定维度的数据值 More...
|
|
bool | UpdateData (string serieName, int dataIndex, int dimension, double value) |
| 更新指定系列指定数据项指定维度的数据值 More...
|
|
bool | UpdateXYData (string serieName, int dataIndex, float xValue, float yValue) |
| 更新指定系列的维度X和维度Y数据 More...
|
|
bool | UpdateXYData (int serieIndex, int dataIndex, float xValue, float yValue) |
| 更新指定系列的维度X和维度Y数据 More...
|
|
bool | IsActive (string name) |
| 指定系列是否显示 More...
|
|
bool | IsActive (int index) |
| 指定系列是否显示 More...
|
|
void | SetActive (string name, bool active) |
| 设置指定系列是否显示 More...
|
|
void | SetActive (int index, bool active) |
| 设置指定系列是否显示 More...
|
|
bool | IsHighlight (int serieIndex) |
| 指定系列是否处于高亮选中状态 More...
|
|
void | SetSerieSymbolSizeCallback (SymbolSizeCallback size, SymbolSizeCallback selectedSize) |
| 设置获得标志图形大小的回调 More...
|
|
virtual void | SetVerticesDirty () |
|
virtual void | SetComponentDirty () |
|
virtual void | ClearComponentDirty () |
|
the list of series. 系列列表。每个系列通过 type 决定自己的图表类型。
Definition at line 19 of file Series.cs.