|
|
DQChart Control > Properties > Step |
Step
Applies to: |
DQChart Active X Control |
Description: |
Specifies the number of data points to skip so that the waveform can be pseudo-compressed. Default is 1. |
Syntax: |
DQChart1.Step=variable |
Variable: |
|
Example: |
Private Sub Form_Load() 'for every 20 data points only one is plotted on the chart DQChart1.Step = 20 End Sub
Private Sub DataqSdk1_ NewData(ByVal Count As Integer) DQChart1. Chart (DataqSdk1. GetData) End Sub
Private Sub Start_Click() DataqSdk1. Start End Sub
Private Sub Stop_Click() DataqSdk1. Stop End Sub |