TimePeriodEnd property (XY Plot object)
Returns or sets the end 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
.TimePeriodEnd
[ = 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 SetTimePeriodEnd() XYPlot1.TimePeriodAbsoluteMode = True XYPlot1.TimePeriodEnd = "2016/01/01 09:15 AM" End Sub
Provide Feedback