The method BuildChart auto-scales the coordinate system to include all of the data added to the chart, regardless of any previous settings. You can however, change the coordinate system scale after your call BuildChart. You must also call a group of auto-axis routines after you do that to make sure the x- and y-axes adjust to the new scale. Last you call UpdateDraw to force a redraw of the chart.
.
.
.
Me.BuildChart()
Me.CoordinateSystem.SetScaleX(-10, 10)
Me.XAxis.CalcAutoAxis()
Me.YAxis.CalcAutoAxis()
Me.XAxisLab.CalcAutoAxisLabels()
Me.YAxisLab.CalcAutoAxisLabels()
Me.UpdateDraw()