Auto Updates On Gauges
This web site builds the control from code behind but you could also grab it from the toolbox, this sample also uses a ViewModel to populate the properties of the control(s) in this sample.

View model
using System;
using System.Collections.Generic;
using LiveChartsCore;
using LiveChartsCore.Defaults;
using LiveChartsCore.Measure;
using LiveChartsCore.SkiaSharpView;
using CommunityToolkit.Mvvm.ComponentModel;
using CommunityToolkit.Mvvm.Input;
namespace ViewModelsSamples.Pies.Gauge5;
public partial class ViewModel : ObservableObject
{
private readonly Random _random = new();
public ViewModel()
{
ObservableValue1 = new ObservableValue { Value = 50 };
ObservableValue2 = new ObservableValue { Value = 80 };
Series = new GaugeBuilder()
.WithOffsetRadius(5)
.WithLabelsPosition(PolarLabelsPosition.Start)
.AddValue(ObservableValue1, "North")
.AddValue(ObservableValue2, "South")
.BuildSeries();
}
public ObservableValue ObservableValue1 { get; set; }
public ObservableValue ObservableValue2 { get; set; }
public IEnumerable<ISeries> Series { get; set; }
[RelayCommand]
public void DoRandomChange()
{
// modifying the Value property updates and animates the chart automatically
ObservableValue1.Value = _random.Next(0, 100);
ObservableValue2.Value = _random.Next(0, 100);
}
}
Form code behind
using System.Windows.Forms;
using LiveChartsCore.SkiaSharpView.WinForms;
using ViewModelsSamples.Pies.Gauge5;
namespace WinFormsSample.Pies.Gauge5;
public partial class View : UserControl
{
private readonly PieChart pieChart;
public View()
{
InitializeComponent();
Size = new System.Drawing.Size(50, 50);
var viewModel = new ViewModel();
pieChart = new PieChart
{
Series = viewModel.Series,
InitialRotation = -90,
MaxAngle = 270,
Total = 100,
LegendPosition = LiveChartsCore.Measure.LegendPosition.Bottom,
// out of livecharts properties...
Location = new System.Drawing.Point(0, 0),
Size = new System.Drawing.Size(50, 50),
Anchor = AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top | AnchorStyles.Bottom
};
Controls.Add(pieChart);
var b1 = new Button { Text = "Update", Location = new System.Drawing.Point(0, 0) };
b1.Click += (object sender, System.EventArgs e) => viewModel.DoRandomChange();
Controls.Add(b1);
b1.BringToFront();
}
}