implot icon indicating copy to clipboard operation
implot copied to clipboard

Immediate Mode Plotting

Results 172 implot issues
Sort by recently updated
recently updated
newest added

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 ![Well_Plot](https://user-images.githubusercontent.com/16086877/121802441-87993180-cc3c-11eb-83cc-7111d311790b.png) Many Thanks

enhancement
plot type

Hi. Love the library. My biggest problem while using it is the tick spacing: ![image](https://user-images.githubusercontent.com/61606260/125618817-7424e2c5-93d8-4891-8cba-5327b25508ce.png) I think the tick placing/spacing should not change when the plot- is at a different...

invalid

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.`

bug

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.

enhancement

Digital plots stack from bottom to top. The legend starts top to bottom. How can we align these?

enhancement

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...