Basic Line
Hover over the image to see the chart animation


View Model
using CommunityToolkit.Mvvm.ComponentModel;
using LiveChartsCore;
using LiveChartsCore.SkiaSharpView;
namespace ViewModelsSamples.Lines.Basic;
[ObservableObject]
public partial class ViewModel
{
public ISeries[] Series { get; set; } =
{
new LineSeries<double>
{
Values = new double[] { 2, 1, 3, 5, 3, 4, 6 },
Fill = null
}
};
}
HTML
@page "/Lines/Basic"
@using LiveChartsCore.SkiaSharpView.Blazor
@using ViewModelsSamples.Lines.Basic
<CartesianChart Series="ViewModel.Series"/>
@code {
public ViewModel ViewModel { get; set; } = new();
}