Hello!
The latest nuget update broke one of my code part:
private void formsPlot1_MouseClicked(object sender, MouseEventArgs e)
{
toolStripTextBox1.Text = $"X: {Math.Round(formsPlot1.mouseCoordinates.X)}, Y: {Math.Round(formsPlot1.mouseCoordinates.Y)}";
}
Error CS1061 'FormsPlot' does not contain a definition for 'mouseCoordinates' and no accessible extension method 'mouseCoordinates' accepting a first argument of type 'FormsPlot' could be found (are you missing a using directive or an assembly reference?)