Basic Step Line
Hover over the image to see the chart animation


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