Replies: 1 comment 1 reply
-
ImPlot::PushStyleVar(ImPlotStyleVar_PlotPadding, ImVec2(0,0));
if (ImPlot::BeginPlot(...)) {
...
ImPlot::EndPlot();
}
ImPlot::PopStyleVar(); |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I've tried to get rid of this border but it still shows up, tried to set implot style border size to 0 but it still pops up.
Trying to draw a simple plot:
if (ImPlot::BeginPlot("", NULL, NULL, ImVec2(-1, -1), ImPlotFlags_None, ImPlotAxisFlags_NoGridLines | ImPlotAxisFlags_NoTickMarks | ImPlotAxisFlags_NoTickLabels, ImPlotAxisFlags_NoGridLines | ImPlotAxisFlags_NoTickMarks | ImPlotAxisFlags_NoTickLabels))
But still get this blue border around.
Beta Was this translation helpful? Give feedback.
All reactions