Property | Type | Description | |
---|---|---|---|
InitializeComponent | void | ||
UpdateYRange | void |
Method | Description | |
---|---|---|
AddWaveform ( string name, Color color, int width ) : void |
Add Waveform to the chart. Adds new empty waveform to the collection of waves. To update this wave the UpdateWaveform(string, float[]) method should be used. |
|
AddWaveform ( string name, Color color, int width, bool updateYRange ) : void |
Add Waveform to the chart. Adds new empty waveform to the collection of waves. To update this wave the UpdateWaveform(string, float[]) method should be used. Adds new empty data series to the collection of data series. The updateYRange parameter specifies if the waveform 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. |
|
RemoveAllWaveforms ( ) : void |
Remove all waveforms from the chart.
|
|
RemoveWaveform ( string name ) : void |
Remove a Waveform from the chart.
|
|
UpdateWaveform ( string name, float data ) : void |
Update Waveform on the chart.
|
|
UpdateWaveform ( string name, float data, int samples ) : void |
Update Waveform on the chart.
|
|
Wavechart ( ) : System |
Initializes a new instance of the Wavechart class.
|
Method | Description | |
---|---|---|
Dispose ( bool disposing ) : void |
Dispose the object.
|
|
OnBackColorChanged ( |
Raises the E:System.Windows.Forms.Control.BackColorChanged event.
|
|
OnPaint ( PaintEventArgs e ) : void |
Paints the control.
|
|
OnPaintBackground ( PaintEventArgs pevent ) : void |
Paints the background of the control.
|
Method | Description | |
---|---|---|
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 AddWaveform ( string name, Color color, int width ) : void | ||
name | string | Waveform name. |
color | Color | Waveform color. |
width | int | Waveform width. |
return | void |
public AddWaveform ( string name, Color color, int width, bool updateYRange ) : void | ||
name | string | Waveform name. |
color | Color | Waveform color. |
width | int | Waveform width. |
updateYRange | bool | Specifies if |
return | void |
protected OnBackColorChanged ( |
||
e | An |
|
return | void |
protected OnPaint ( PaintEventArgs e ) : void | ||
e | PaintEventArgs | |
return | void |
protected OnPaintBackground ( PaintEventArgs pevent ) : void | ||
pevent | PaintEventArgs | A |
return | void |
public RemoveWaveform ( string name ) : void | ||
name | string | Waveform name to remove. |
return | void |
public UpdateWaveform ( string name, float data ) : void | ||
name | string | Data series name to update. |
data | float | Data series values. |
return | void |
public UpdateWaveform ( string name, float data, int samples ) : void | ||
name | string | Data series name to update. |
data | float | Data series values. |
samples | int | The number of samples in the |
return | void |