Racing Bars
The [ObservableObject]
, [ObservableProperty]
and [RelayCommand]
attributes come from the
CommunityToolkit.Mvvm package, you can read more about it
here.
View model
using System;
using System.Linq;
using System.Threading.Tasks;
using CommunityToolkit.Mvvm.ComponentModel;
using LiveChartsCore;
using LiveChartsCore.Defaults;
using LiveChartsCore.Drawing;
using LiveChartsCore.Measure;
using LiveChartsCore.SkiaSharpView;
using LiveChartsCore.SkiaSharpView.Painting;
using SkiaSharp;
namespace ViewModelsSamples.Bars.Race;
public partial class ViewModel : ObservableObject
{
private readonly Random _r = new();
private static readonly (string, double)[] s_initialData =
{
("Tsunoda", 500),
("Sainz", 450),
("Riccardo", 520),
("Bottas", 550),
("Perez", 660),
("Verstapen", 920),
("Hamilton", 1000)
};
public ViewModel()
{
_ = StartRace();
}
public bool IsReading { get; set; } = true;
[ObservableProperty]
private ISeries[] _series =
s_initialData
.Select(x => new RowSeries<ObservableValue>
{
Values = new[] { new ObservableValue(x.Item2) },
Name = x.Item1,
Stroke = null,
MaxBarWidth = 25,
DataLabelsPaint = new SolidColorPaint(new SKColor(245, 245, 245)),
DataLabelsPosition = DataLabelsPosition.End,
DataLabelsTranslate = new LvcPoint(-1, 0),
DataLabelsFormatter = point => $"{point.Context.Series.Name} {point.Coordinate.PrimaryValue}"
})
.OrderByDescending(x => ((ObservableValue[])x.Values!)[0].Value)
.ToArray();
[ObservableProperty]
private Axis[] _xAxes = { new Axis { SeparatorsPaint = new SolidColorPaint(new SKColor(220, 220, 220)) } };
[ObservableProperty]
private Axis[] _yAxes = { new Axis { IsVisible = false } };
public async Task StartRace()
{
await Task.Delay(1000);
// to keep this sample simple, we run the next infinite loop
// in a real application you should stop the loop/task when the view is disposed
while (IsReading)
{
foreach (var item in Series)
{
if (item.Values is null) continue;
var i = ((ObservableValue[])item.Values)[0];
i.Value += _r.Next(0, 100);
}
Series = Series
.OrderByDescending(x => ((ObservableValue[])x.Values!)[0].Value)
.ToArray();
await Task.Delay(100);
}
}
}
XAML
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage x:Class="MauiSample.Bars.Race.View"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:lvc="clr-namespace:LiveChartsCore.SkiaSharpView.Maui;assembly=LiveChartsCore.SkiaSharpView.Maui"
xmlns:vms="clr-namespace:ViewModelsSamples.Bars.Race;assembly=ViewModelsSamples">
<ContentPage.BindingContext>
<vms:ViewModel/>
</ContentPage.BindingContext>
<ContentPage.Content>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<lvc:CartesianChart
Series="{Binding Series}"
XAxes="{Binding XAxes}"
YAxes="{Binding YAxes}"
TooltipPosition="Hidden">
</lvc:CartesianChart>
</Grid>
</ContentPage.Content>
</ContentPage>