Filtering in line charts

0
Hi, I have a line chart based on data retrieved from the Azure cloud with temperatures on the Y-axis and DateTime on the X-axis. This is quite a large data set and I would like to be able to select a specific period of time on the website and only see the data between those periods of time.  Any suggestions?
asked
1 answers
0

If you have the DateTime couldn't you filter by this when retrieving the data. Create two variables. FromDate and ToDate. [DateTime => FromDate and DateTime <= ToDate]

answered