|
|
DQChart Control > Properties > MarkWdqEvent |
MarkWdqEvent
Applies to: |
DQChart Active X Control |
Description: |
If this property is TRUE, WinDaq compatible events will be plotted. Events are displayed in the chart as a vertical line. The default is FALSE. |
Syntax: |
DQChart1.MarkWdqEvent=variable |
Variable: |
|
Example: |
Private Sub Form_Load() DQChart1. Channel=0 DQChart1.MarkWdqEvent = True End Sub
Private Sub DataqSdk1_ NewData(ByVal Count As Integer) DQChart1. Chart (DataqSdk1. GetData) End Sub
Private Sub Start_Click() DataqSdk1. ADChannelCount = 1 DataqSdk1. EventPoint = 20 DataqSdk1. Start End Sub
Private Sub Stop_Click() DataqSdk1. Stop End Sub |