Skip to content

SignalSourceBase: Fixed GetLimitsX and GetLimitsY (#4868)#5033

Merged
swharden merged 3 commits intoScottPlot:mainfrom
CoderPM2011:fix/SignalSourceBase
Aug 22, 2025
Merged

SignalSourceBase: Fixed GetLimitsX and GetLimitsY (#4868)#5033
swharden merged 3 commits intoScottPlot:mainfrom
CoderPM2011:fix/SignalSourceBase

Conversation

@CoderPM2011
Copy link
Contributor

reslove #4868

Fixed the following code:

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);
}

@swharden swharden enabled auto-merge (squash) August 22, 2025 23:52
@swharden swharden merged commit 4c4800c into ScottPlot:main Aug 22, 2025
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

SignalSourceBase: GetLimitsX and GetLimitsY return min-min and not min-max. Is this intended?

3 participants