I have tried setting AntiAliasing
to true on a Line Chart (Real Time FIFO) but it doesn't appear to be working. Is there anything else I need to do?
Here is the XAML...
<s:SciChartSurface x:Name="sciChart" Grid.Column="1" GridLinesPanelStyle="{StaticResource GridLinesPanelStyle}" RenderTransformOrigin="0.498,0.48" RenderableSeries="{Binding ChartSeries}">
And the code behind...
private void AddCurveToChart(XyDataSeries<double, double> curveSeries)
{
FastLineRenderableSeries renderableCurve = new FastLineRenderableSeries
{
DataSeries = curveSeries,
Stroke = (Color)ColorConverter.ConvertFromString(Strokes[ChartSeries.Count < Strokes.Length ? ChartSeries.Count : Strokes.Length - 1]),
StrokeThickness = 2,
AntiAliasing = true,
};
ChartSeries.Add(renderableCurve);
RaisePropertiesChanged("ChartSeries");
}
Yet, as you can see from the screenshot, I still get "the jaggies"...