As a user, I want more types of errors or warnings so that I understand why my plots aren't showing.
Cases:
Poor performance --> "Warning: Plot contains more than XXX points and may have poor performance"
Unable to load --> "Error: Unable to downsample non-time series data. Plot contains more than XXXX points, and will not be displayed"
From a quick glance at FigureSubscription.java I believe there is already logic in place to capture when we can't downsample but it doesn't tell the user the upper limit of how many data points we can handle. I think it's somewhere near 200,000? The poor performance warning is not in place yet.
As a user, I want more types of errors or warnings so that I understand why my plots aren't showing.
Cases:
From a quick glance at
FigureSubscription.java
I believe there is already logic in place to capture when we can't downsample but it doesn't tell the user the upper limit of how many data points we can handle. I think it's somewhere near 200,000? The poor performance warning is not in place yet.