Polar Coordinates
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 LiveChartsCore;
using LiveChartsCore.Defaults;
using LiveChartsCore.SkiaSharpView;
namespace ViewModelsSamples.Polar.Coordinates;
public class ViewModel
{
public ISeries[] Series { get; set; } = [
new PolarLineSeries<ObservablePolarPoint>
{
Values = [
new(0, 10),
new(45, 15),
new(90, 20),
new(135, 25),
new(180, 30),
new(225, 35),
new(270, 40),
new(315, 45),
new(360, 50),
],
IsClosed = false,
Fill = null
}
];
public PolarAxis[] AngleAxes { get; set; } = [
new PolarAxis
{
// force the axis to always show 360 degrees.
MinLimit = 0,
MaxLimit = 360,
Labeler = angle => $"{angle}°",
ForceStepToMin = true,
MinStep = 30
}
];
}
Form code behind
using System.Windows.Forms;
using LiveChartsCore.SkiaSharpView.WinForms;
using ViewModelsSamples.Polar.Coordinates;
namespace WinFormsSample.Polar.Coordinates;
public partial class View : UserControl
{
/// <summary>
/// Initializes a new instance of the <see cref="View"/> class.
/// </summary>
public View()
{
InitializeComponent();
Size = new System.Drawing.Size(50, 50);
var viewModel = new ViewModel();
var polarChart = new PolarChart
{
Series = viewModel.Series,
AngleAxes = viewModel.AngleAxes,
// 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(polarChart);
}
}