Good looking, animated, easy to customize, MVVM charts for WPF, WinForms under MIT Licence
seriesCollection.Add(new LineSeries
{
Title = "Daily XY Plot",
Configuration = new CartesianMapper<Point>()
.X(pointA => pointA.X)
.Y(pointA => pointA.Y),
LineSmoothness = 0.5,
Values = MyValues ,
PointForeground = Brushes.Black,
Foreground = Brushes.Black,
Fill = Brushes.Transparent,
DataLabels = true,
Stroke = Brushes.Black
});
SeriesCollection.Add(new RowSeries
{
MaxRowHeigth = 15,
Title = "",
Values = new ChartValues<double>(stackedlist.Select(s => Convert.ToDouble(s.ValueVorjahr)).ToList()),
DataLabels = true,
Foreground = Brushes.Black,
FontSize = 9,
Fill = Brushes.Green,
});
I want to use LiveCharts for UWP, but this version not working https://lvcharts.net/App/examples/v1/uwp/Basic%20Line%20Chart
The probelm is in the XAML file at the <lvc:Axis> part the VS needs AxesCollection tag. Can somebody help with this? If I write AxesCollection it doesnt work