I have my graph working well and it plots the 11 points I need on it just as it should. However, I'm interested in specifically the first 3 points as soon as the plot appears. I was wondering if there's a way to have the chart zoom in automatically to the first 3 points plotted rather than having a full scale view of the chart when the process is complete. Here's the xaml:
<SciChart:SciChartSurface x:Name="sciChart"
Grid.Row="6"
SciChart:RenderSurfaceBase.RenderSurfaceType="Abt.Controls.SciChart.Rendering.HighQualityRasterizer.HighQualityRenderSurface"
SciChart:ThemeManager.Theme="BlackSteel"
Margin="-23,-2,-8,-18" Grid.ColumnSpan="6" Loaded="sciChart_Loaded">
<!-- Declare RenderableSeries -->
<SciChart:SciChartSurface.RenderableSeries>
<SciChart:FastLineRenderableSeries SeriesColor="LightBlue" StrokeThickness="2">
<SciChart:FastLineRenderableSeries.PointMarker>
<SciChart:EllipsePointMarker Width="9" Height="9" Stroke="LightBlue" Fill="#990077FF" StrokeThickness="2"/>
</SciChart:FastLineRenderableSeries.PointMarker>
</SciChart:FastLineRenderableSeries>
</SciChart:SciChartSurface.RenderableSeries>
<!-- Declare Axes -->
<SciChart:SciChartSurface.XAxis>
<SciChart:TimeSpanAxis AxisTitle="Time" GrowBy="0.1, 0.1" DrawMajorGridLines="True" DrawMinorGridLines="True" DrawMajorTicks="True" DrawMinorTicks="True" />
</SciChart:SciChartSurface.XAxis>
<SciChart:SciChartSurface.YAxis>
<SciChart:NumericAxis AxisAlignment="Left" AxisTitle=" % in Profit" GrowBy="0.1, 0.1" DrawMajorGridLines="True" DrawMinorGridLines="True" DrawMajorTicks="True" DrawMinorTicks="True"/>
</SciChart:SciChartSurface.YAxis>
Is it possible to do this with Scichart's charts?