Add Point On Click
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.Collections.ObjectModel;
using CommunityToolkit.Mvvm.ComponentModel;
using LiveChartsCore;
using LiveChartsCore.Defaults;
using LiveChartsCore.SkiaSharpView;
namespace ViewModelsSamples.Events.AddPointOnClick;
public partial class ViewModel : ObservableObject
{
public ViewModel()
{
var data = new ObservableCollection<ObservablePoint>
{
new(0, 5),
new(3, 8),
new(7, 9)
};
Data = data;
SeriesCollection = new ISeries[]
{
new LineSeries<ObservablePoint>
{
Values = data,
Fill = null,
DataPadding = new LiveChartsCore.Drawing.LvcPoint(5, 5)
}
};
}
public ObservableCollection<ObservablePoint> Data { get; set; }
public ISeries[] SeriesCollection { get; set; }
}
Form code behind
using System.Collections.ObjectModel;
using System.Windows.Forms;
using LiveChartsCore.Defaults;
using LiveChartsCore.Drawing;
using LiveChartsCore.SkiaSharpView.WinForms;
using ViewModelsSamples.Events.AddPointOnClick;
namespace WinFormsSample.Events.AddPointOnClick;
public partial class View : UserControl
{
private readonly ObservableCollection<ObservablePoint> _data;
/// <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();
_data = viewModel.Data;
var cartesianChart = new CartesianChart
{
Series = viewModel.SeriesCollection,
// 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
};
cartesianChart.MouseDown += CartesianChart_Click;
Controls.Add(cartesianChart);
}
private void CartesianChart_Click(object sender, MouseEventArgs e)
{
var chart = (CartesianChart)sender;
// scales the UI coordinates to the corresponding data in the chart.
var dataCoordinates = chart.ScalePixelsToData(new LvcPointD(e.Location.X, e.Location.Y));
// finally add the new point to the data in our chart.
_data.Add(new ObservablePoint(dataCoordinates.X, dataCoordinates.Y));
// You can also get all the points or visual elements in a given location.
var points = chart.GetPointsAt(new LvcPoint(e.Location.X, e.Location.Y));
var visuals = chart.GetVisualsAt(new LvcPoint(e.Location.X, e.Location.Y));
}
}