Basic Step Line


Hover over the image to see the chart animation
View Model
using LiveChartsCore;
using LiveChartsCore.SkiaSharpView;
namespace ViewModelsSamples.StepLines.Basic;
public class ViewModel
{
public ISeries[] Series { get; set; } = [
new StepLineSeries<double?>
{
Values = [2, 1, 3, 4, 3, 4, 6],
Fill = null
}
];
}
using Eto.Forms;
using LiveChartsCore.SkiaSharpView.Eto;
using ViewModelsSamples.StepLines.Basic;
namespace EtoFormsSample.StepLines.Basic;
public class View : Panel
{
private readonly CartesianChart cartesianChart;
public View()
{
var viewModel = new ViewModel();
cartesianChart = new CartesianChart
{
Series = viewModel.Series,
};
Content = cartesianChart;
}
}