-
Notifications
You must be signed in to change notification settings - Fork 981
Closed
Description
Issue: When I invert the Y axis of a chart the Y-axis labels and horizontal grid lines are ommitted.
ScottPlot Version: ScottPlot.WPF v5.0.21
Code Sample:
using ScottPlot;
using System.Drawing;
double[] dataX = { 1, 2, 3, 4, 5 };
double[] dataY = { 1, 4, 9, 16, 25 };
ScottPlot.Plot myPlot = new();
var trace = myPlot.Add.SignalXY(dataX, dataY);
myPlot.SavePng("quickstart1.png", 400, 300);
myPlot.Axes.SetLimits(left: 0, right: 6, bottom: 26, top: 0);
myPlot.SavePng("quickstart2.png", 400, 300);Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels

