TimePeriodStart property (XY Plot object)
Returns or sets the start date and time for the current time period. To set this property, the TimePeriodAbsoluteMode property must be set to
True
. Read/write. String.Syntax
XYPlot1
.TimePeriodStart
[ = value
]where
XYPlot1
- is the name of an XY Plot object or an expression that evaluates to an XY Plot object.value -
is a parameter of the type String. This is a date/time string such as "2016/01/01 12:00 PM".Example
Private Sub SetTimePeriodStart() XYPlot1.TimePeriodAbsoluteMode = True XYPlot1.TimePeriodStart = "2016/01/01 09:15 AM" End Sub
Provide Feedback