I have a 'line' of values where some information might be missing.
e.g.:
Jan - 10, Feb - 20, Mar - 15, Apr - null, Jun - 45 ... etc
I would expect that in the chart the NULL value will simply appear 'empty' (missing) from the line.
e.g.
I have tried using ChartValues<decimal?>
but the chart complains in the XAML that it does not know how to plot Nullable
1`.
Help?