Layered Bars
Hover over the image to see the chart animation
View Model
using LiveChartsCore;
using LiveChartsCore.SkiaSharpView;
namespace ViewModelsSamples.Bars.Layered;
public class ViewModel
{
public ISeries[] Series { get; set; } = [
new ColumnSeries<int>
{
Values = [6, 3, 5, 7, 3, 4, 6, 3],
Stroke = null,
MaxBarWidth = double.MaxValue,
IgnoresBarPosition = true
},
new ColumnSeries<int>
{
Values = [2, 4, 8, 9, 5, 2, 4, 7],
Stroke = null,
MaxBarWidth = 30,
IgnoresBarPosition = true
}
];
}
HTML
@page "/Bars/Layered"
@using LiveChartsCore.SkiaSharpView.Blazor
@using ViewModelsSamples.Bars.Layered
<CartesianChart
Series="ViewModel.Series">
</CartesianChart>
@code {
public ViewModel ViewModel { get; set; } = new();
}