Completed
Last Updated: 11 Oct 2023 08:02 by ADMIN
Release 6.3.0
Emily
Created on: 27 Sep 2023 15:36
Category: Chart
Type: Bug Report
0
Chart: [Android] Cannot change Stroke of ScatterSplineSeries at runtime
Dynamic change of the Stroke property of the ScatterSplineSeries has no effect in Android, the stroke is not changed.

 

Workaround:

Change the Palette.

ChartPalette chartPalette = new ChartPalette();
chartPalette.Entries.Add(new PaletteEntry { FillColor = Colors.LightBlue, StrokeColor = Colors.LightGreen });
this.chart.Palette = chartPalette;

 

0 comments