Multiple Values Gauge
Notice this web site wraps every sample using the UserControl
class, but LiveCharts controls can be used inside any container,
this sample also follows a Model-View-* pattern.

View model
using System.Collections.Generic;
using LiveChartsCore;
using LiveChartsCore.Measure;
using LiveChartsCore.SkiaSharpView;
namespace ViewModelsSamples.Pies.Gauge3;
public class ViewModel
{
public IEnumerable<ISeries> Series { get; set; }
= new GaugeBuilder()
.WithLabelsSize(20)
.WithLabelsPosition(PolarLabelsPosition.Start)
.WithLabelFormatter(point => $"{point.PrimaryValue} {point.Context.Series.Name}")
.WithInnerRadius(20)
.WithOffsetRadius(8)
.WithBackgroundInnerRadius(20)
.AddValue(30, "Vanessa")
.AddValue(50, "Charles")
.AddValue(70, "Ana")
.BuildSeries();
}
XAML
<UserControl x:Class="WPFSample.Pies.Gauge3.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.Gauge3;assembly=ViewModelsSamples"
MaxHeight="400"
MaxWidth="400">
<UserControl.DataContext>
<vms:ViewModel/>
</UserControl.DataContext>
<lvc:PieChart
Series="{Binding Series}"
InitialRotation="45"
MaxAngle="270"
Total="100">
</lvc:PieChart>
</UserControl>