|
|
|
|
|
<Chart>.RealTimeInterval (Function) In french: <Graphe>.TempsRéelIntervalle 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 <Chart>.AddTimeData. FOR I = 1 TO 10
d is Duration
d.Minute = I
CHART_MyChart.AddTimeData(1, d, 2 + Sin(I*36))
END
d is Duration = 2 min
CHART_NoName1.RealTimeInterval(d)
CHART_NoName1.Draw()
Syntax
<Chart control>.RealTimeInterval(<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. Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|