implot
implot copied to clipboard
Immediate Mode Plotting
Hello! There are two includes of Dear ImGui headers: 1. imgui.h in the implot.h 2. imgui_internal.h in the implot_internal.h Both headers are included as it is without extra `imgui` directory....
**Feature description** Hey! Some time ago I made a [sorting visualizer](https://github.com/CosminPerRam/StylishVisualizer/) by utilizing this great library and I'd like to add support for visualizing via pie plots, but I can't...
Hi, love this library, thank you for all the great work. I'm trying to use the fill features to add some shading within plotted shapes and noticing that the fill...
Currently, when doing several plots on top of each other with too different data scales their Y axes will be placed at different distance to the plot area edge: The...
In this simplified code snippet below, I use the SetupAxisLimitsConstraint method to keep my barchart within a desired range (along with zoom constraints) ImPlot::BeginPlot(chart_name.c_str(), ImVec2(-1, 0), ImPlotFlags_NoBoxSelect | ImPlotFlags_NoMenus |...
Hey @epezent, thank you for your work on this awesome project. It's very unfortunate to see it being abandoned (except for some maintenance fixes by Omar himself). There is clearly...
I have two subplots that are supposed to have their x-axis range linked together so that upon mouse drag event or mouse wheel event while the mouse is inside either...
This PR adds a function to plot filled contour according to a regular/irregular grid of data. It reproduces the function of [contourf(x, y, z) in Matplotlib](https://matplotlib.org/stable/plot_types/arrays/contourf.html#sphx-glr-plot-types-arrays-contourf-py). The implementation is inspired...
I use my own "ImPlotFormatter formatter" for the X axis. ```c++ ImPlot::SetupAxisFormat(ImAxis_X1, Plot::time_axis_formatter, this); ``` In the time_axis_formatter method, the values are displayed in two lines (date \n time): ```c++...
Dear @epezent, first off, thanks again for maintaining such a lean and well-integrated plotting library — keep up the great work! :+1: ### Current behaviour At present, `SetupAxisFormat(...)` only applies...