Evan Pezent

Results 49 comments of Evan Pezent

@ozlb -- I agree this should be demoed. I would prefer to see a separate demo that is more visible though (e.g. under `Tools/Downsampling` or `Custom/Downsampling` or a new tab...

Thanks, I stupidly assumed negative timestamps would not work, but alas they do. Unfortunately, to get this working in ImPlot will take a bit more than simply changing the value...

We currently provide US date formatting and ISO8601 formatting. Try enabling `ImPlotStyle::UseISO8601` and see if that's more comfortable for you,

@WildRackoon , thanks for the PR. This looks useful! I'll try to take a look soon (currently swamped with school).

It's not currently possible and I have no plans to support it in the near-term. I'm happy to review PRs if you'd like to give it a shot. As an...

@yaszin, please also see `ShowAltLegend` in `implot_internal.h`. IIRC, my intention was to eventually move this into the public API but I never got around to testing it thoroughly.

The top plot is technically possible with `PlotText`, though it would require a lot of work on your end to make work smoothly. Quite frankly, I think you'd be better...

Hey, thanks for the PR and sorry for the slow response. I was sitting on this one because I was worried it might have cause some unintended side effects. This...

After looking into this more closely, I'm not convinced it's a real issue. The amount of variation in the range is extremely small, essentially epsilon, and I'm not so sure...

I just tried the following with the parameters you provided and don't see anything particularly unusual: ```cpp if (ImPlot::BeginPlot("My Plot")) { ImPlot::SetupAxisLimitsConstraints(ImAxis_X1, 400000.0, 2000000000.0); ImPlot::SetupAxisZoomConstraints(ImAxis_X1, 1000, 2400000.0); ImPlot::EndPlot(); } ```...