Classic Chart dynamically change date range

Realtime mode just means the query is polling on the easy chart. What you need to do is make the SQL query on the classic chart set to “Polling Off” so it only runs once. You can put a timer on the window that can re-run the query on the chart. You can use a propertyChange script for that on the timer:if event.propertyName == "value": system.db.refresh(event.source.parent.getComponent("Classic Chart"), "Data")You can set the timer’s running checkbox to true when you want it to poll and false when you don’t. Hope that helps.