|
|
|
|
|
grRealTimeInterval (Function) Sets the time interval visible in a time chart with real-time display. Example: In this example, the time interval is 10 seconds.
Note: This function only applies to graphs with a time scale, for which data is added using function grAddTimeData. FOR I = 1 TO 10
d is Duration
d.Minute = I
grAddTimeData(CHART_MyChart, 1, d, 2 + Sin(I*36))
END
d is Duration = 2 min
grRealTimeInterval(CHART_MyChart, d)
grDraw(CHART_NoName1)
Sintaxis
grRealTimeInterval(<Chart control> , <Interval>)
<Chart control>: Control name Name of the Chart control to be used. <Interval>: Duration Time interval visible in the chart (expressed in milliseconds). By default, this value is 60 seconds. If this parameter corresponds to 0, the default value is used. Clasificación Lógica de negocio / UI: Código neutro
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|