implot
implot copied to clipboard
Immediate Mode Plotting
ImPlot heavily relies on DragLineX call order but it shall not (IMO) Hello. Let us change the void ShowDemo_DragLines() code the following way: Old code: `ImPlot::DragLineX(0,&x1,ImVec4(1,1,1,1),1,flags); ImPlot::DragLineX(1,&x2,ImVec4(1,1,1,1),1,flags); New code: if...
Hello, From implot.h // ImPlot version string. #define IMPLOT_VERSION "0.13 WIP" I need fixed axes so I have changed ImPlot::SetupAxesLimits(0,1,0,1); to ImPlot::SetupAxesLimits(0, 1, 0, 1, ImPlotCond_Always); in void ShowDemo_DragLines(). I...
Rendering big dataset of candlestick data drops FPS quite a lot. 50k entries dataset brings my FPS down to 30. Running twice as much decreases it even more. Running GLFW...
This adds a getter corresponding to `HideNextItem()`. I needed this to be able to implement some custom auto-fitting behaviors.
Dear All, Is there any way in Implot to transpose X & Y axes for well data plotting  Many Thanks
Hi. Love the library. My biggest problem while using it is the tick spacing:  I think the tick placing/spacing should not change when the plot- is at a different...
https://github.com/epezent/implot/blob/14d4c96d0c169198e60079d467111139b47242f5/implot.cpp#L3370 `bool ImGui::InvisibleButton(const char* str_id, const ImVec2& size_arg, ImGuiButtonFlags flags)` `// Cannot use zero-size for InvisibleButton(). Unlike Button() there is not way to fallback using the label size.`
Hello, I have a suggestion for small enhancement: ImPlotFlags_Equal should cause the grid and tick marks to be square. It would make the plot easier to read.
Digital plots stack from bottom to top. The legend starts top to bottom. How can we align these?
In the below code, if you right click the plot and disable the Legend, adding the `ImPlotFlags_Crosshairs` flag re-enables the Legend icon. I am just wondering if this is a...