Yes, the QCSPCChart library has been updated to include the scroll bar as a accessible property. In the SPC***ControlChart classes it has the property name: HScrollBar1.
Below is a modified version of the TimeVariableControlCharts.XBarRChart example.
SimulateData();
/ Calculate the SPC control limits for both graphs of the current SPC chart (X-Bar R)
this.AutoCalculateControlLimits();
// Scale the y-axis of the X-Bar chart to display all data and control limits
this.AutoScalePrimaryChartYRange();
// Scale the y-axis of the Range chart to display all data and control limits
this.AutoScaleSecondaryChartYRange();
this.RebuildChartUsingCurrentData();
this.HScrollBar1.Value = this.HScrollBar1.Maximum-numdatapointsinview;