Slim Gauge
The [ObservableObject]
, [ObservableProperty]
and [ICommand]
attributes come from the
CommunityToolkit.Mvvm package, you can read more about it
here.
This web site wraps every sample using a UserControl
instance, but LiveCharts controls can be used inside any container.

View model
using System.Collections.Generic;
using LiveChartsCore;
using LiveChartsCore.Measure;
using LiveChartsCore.SkiaSharpView;
using CommunityToolkit.Mvvm.ComponentModel;
namespace ViewModelsSamples.Pies.Gauge4;
public partial class ViewModel : ObservableObject
{
public IEnumerable<ISeries> Series { get; set; }
= new GaugeBuilder()
.WithLabelsSize(20)
.WithLabelsPosition(PolarLabelsPosition.End)
.WithLabelFormatter(point => point.PrimaryValue.ToString())
.WithInnerRadius(20)
.WithMaxColumnWidth(5)
.WithBackground(null)
.AddValue(50, "Vanessa")
.AddValue(80, "Charles")
.AddValue(95, "Ana")
.BuildSeries();
}
XAML
<UserControl x:Class="WPFSample.Pies.Gauge4.View"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:lvc="clr-namespace:LiveChartsCore.SkiaSharpView.WPF;assembly=LiveChartsCore.SkiaSharpView.WPF"
xmlns:vms="clr-namespace:ViewModelsSamples.Pies.Gauge4;assembly=ViewModelsSamples"
MaxHeight="400"
MaxWidth="400">
<UserControl.DataContext>
<vms:ViewModel/>
</UserControl.DataContext>
<lvc:PieChart
Series="{Binding Series}"
InitialRotation="-90"
MaxAngle="350"
Total="100">
</lvc:PieChart>
</UserControl>