Changing the Timeframe of Charts

I'm playing around with the new Swift Charts, so far everything is rather straight forward, however I'm looking for a way to change the time frame/scope of the chart. For example, recreating the Heart Rate chart in the Health App or in other words, only showing a subsection of the data, and being able to move the x-axis for left/right for more data.

I know it's early, but anyone have any ideas how that might be done?

From the Q&A in the lounge, it sounds like if you want to filter data, you want to do that before passing it to the Chart. So if you want to show just the past wee, you would filter those points out of your data and then include them in the chart. Additionally, you can use .chartXScale(range:) to manually specify the visible range of data.

Changing the Timeframe of Charts
 
 
Q