Power Chart Date Range Selector

You could configure a startup event on the component that runs a script that sets the start and end dates.

This would set the end date to the current time and the start date to 1 hour prior.

self.props.config.startDate = system.date.addHours(system.date.now(),-1)
	
self.props.config.endDate = system.date.now()
3 Likes