프로퍼티 | 타입 | 설명 | |
---|---|---|---|
Chart_Paint | void | ||
InitializeComponent | void | ||
UpdateYRange | void |
메소드 | 설명 | |
---|---|---|
AddDataSeries ( string name, Color color, SeriesType type, int width ) : void |
Add data series to the chart. Adds new empty data series to the collection of data series. To update this series the UpdateDataSeries method should be used. The meaning of the width parameter depends on the data series type: |
|
AddDataSeries ( string name, Color color, SeriesType type, int width, bool updateYRange ) : void |
Add data series to the chart. Adds new empty data series to the collection of data series. The updateYRange parameter specifies if the data series may affect displayable Y range. If the value is set to false, then displayable Y range is not updated, but used the range, which was specified by user (see RangeY property). In the case if the value is set to true, the displayable Y range is recalculated to fully fit the new data series. |
|
Chart ( ) : System |
Initializes a new instance of the Chart class.
|
|
RemoveAllDataSeries ( ) : void |
Remove all data series from the chart.
|
|
RemoveDataSeries ( string name ) : void |
Remove data series from the chart.
|
|
UpdateDataSeries ( string name, double data ) : void |
Update data series on the chart.
|
메소드 | 설명 | |
---|---|---|
Dispose ( bool disposing ) : void |
Dispose the object.
|
메소드 | 설명 | |
---|---|---|
Chart_Paint ( object sender, PaintEventArgs e ) : void | ||
InitializeComponent ( ) : void |
Required method for Designer support - do not modify the contents of this method with the code editor.
|
|
UpdateYRange ( ) : void |
Update Y range.
|
public AddDataSeries ( string name, Color color, SeriesType type, int width ) : void | ||
name | string | Data series name. |
color | Color | Data series color. |
type | SeriesType | Data series type. |
width | int | Width (depends on the data series type, see remarks). |
리턴 | void |
public AddDataSeries ( string name, Color color, SeriesType type, int width, bool updateYRange ) : void | ||
name | string | Data series name. |
color | Color | Data series color. |
type | SeriesType | Data series type. |
width | int | Width (depends on the data series type, see remarks). |
updateYRange | bool | Specifies if |
리턴 | void |
public RemoveDataSeries ( string name ) : void | ||
name | string | Data series name to remove. |
리턴 | void |
public UpdateDataSeries ( string name, double data ) : void | ||
name | string | Data series name to update. |
data | double | Data series values. |
리턴 | void |