Layered Bars
Hover over the image to see the chart animation
View Model
using CommunityToolkit.Mvvm.ComponentModel;
using LiveChartsCore;
using LiveChartsCore.SkiaSharpView;
namespace ViewModelsSamples.Bars.Layered;
public partial class ViewModel : ObservableObject
{
public ISeries[] Series { get; set; } =
{
new ColumnSeries<int>
{
Values = new[] { 6, 3, 5, 7, 3, 4, 6, 3 },
Stroke = null,
MaxBarWidth = double.MaxValue,
IgnoresBarPosition = true
},
new ColumnSeries<int>
{
Values = new[] { 2, 4, 8, 9, 5, 2, 4, 7 },
Stroke = null,
MaxBarWidth = 30,
IgnoresBarPosition = true
}
};
}
using Eto.Forms;
using LiveChartsCore.SkiaSharpView.Eto;
using ViewModelsSamples.Bars.Layered;
namespace EtoFormsSample.Bars.Layered;
public class View : Panel
{
private readonly CartesianChart cartesianChart;
public View()
{
var viewModel = new ViewModel();
cartesianChart = new CartesianChart
{
Series = viewModel.Series,
};
Content = cartesianChart;
}
}