Question: Is this a copy and paste error or intended? It looks wrong to me:
public CoordinateRange GetLimitsX()
{
CoordinateRect rect = GetLimits().Rect;
return new CoordinateRange(rect.Left, rect.Left);
}
public CoordinateRange GetLimitsY()
{
CoordinateRect rect = GetLimits().Rect;
return new CoordinateRange(rect.Bottom, rect.Bottom);
}
I instantiated SignalSourceDouble then called GetLimitsY and was irritated it only returned min-to-min as the range.
ScottPlot Version: Commit 828f68b
Regards,
Dirk