1
0
Fork 0
mirror of https://github.com/gwm17/implot.git synced 2024-10-09 15:47:26 -04:00
implot/README.md

50 lines
2.9 KiB
Markdown
Raw Normal View History

2020-04-24 17:56:10 -04:00
# ImPlot
2020-04-26 18:13:22 -04:00
ImPlot is an immediate mode plotting widget for Dear ImGui. It aims to provide a first-class API that will make ImGui users feel right at home.
2020-04-24 17:56:10 -04:00
2020-04-25 10:02:51 -04:00
## Features
2020-04-24 17:56:10 -04:00
2020-04-25 10:02:51 -04:00
- mutliple plot types: line, scatter, virtical/horizontal bars, stem, error bars
- mix/match multiple plot items on a single plot
2020-04-26 18:13:22 -04:00
- zooming, panning, and box selection controls
2020-04-25 10:02:51 -04:00
- several plot styling options: 10 marker types, adjustable marker sizes, line weights, outline colors, fill colors, etc.
- optional plot titles, axis labels, and grid labels
2020-04-26 18:13:22 -04:00
- optional legend with toggle buttons to show/hide items
2020-04-25 10:02:51 -04:00
- reversible and lockable axes
- logarithmic axis scaling
2020-04-26 18:13:22 -04:00
- size-aware grid with smart labels that are always power-of-ten multiples of 1, 2, and 5
- default styling based on current ImGui theme, but most elements can be customized independently
- mouse cursor location display and optional crosshairs cursor
- customizable data getters and data striding (just like ImGui:PlotLines)
2020-04-25 10:02:51 -04:00
- relatively good performance for high density plots
2020-04-24 17:56:10 -04:00
2020-04-25 10:02:51 -04:00
## Controls
- scroll wheel zoom (both axes if plot area hovered, individual axes if axis labels hovered)
- panning/dragging (both axes if plot area dragged, individual axes if axis labels dragged)
- auto fit data (double-left-click plot area)
- selection box (right-drag in plot area)
- context menu (double-right-click plot area)
## Usage
2020-04-26 18:13:22 -04:00
The API is used just like any other ImGui `Begin`/`End` function. First, start a plotting context with `BeginPlot()`. Next, plot as many items as you want with the provided API functions (e.g. `Plot()`, `PlotBar()`, `PlotErrorBars()`, etc). Finally, wrap things up with a call to `EndPlot()`. That's it!
2020-04-25 10:02:51 -04:00
```cpp
if (ImGui::BeginPlot("My Plot") {
2020-04-26 18:13:22 -04:00
ImGui::Plot("My Line Plot", xs ys, 1000);
ImGui::PlotBar("My Bar Plot", values, 20);
...
2020-04-25 10:02:51 -04:00
ImGui::EndPlot();
}
```
2020-04-26 18:13:22 -04:00
Consult `implot_demo.cpp` for a full run down of features.
2020-04-25 10:02:51 -04:00
## Special Notes
- By default, no anti-aliasing is done on line plots for performance reasons. My apps use 4X MSAA, so I didn't see any reason to waste cycles on software AA. However, you can enable AA with the `ImPlotFlags_AntiAliased` flag.
- If you plan to render several thousands lines or points, then you should consider enabling 32-bit indices by uncommenting `#define ImDrawIdx unsigned int` in your `imconfig.h` file, OR handling the `ImGuiBackendFlags_RendererHasVtxOffset` flag in your renderer (the official OpenGL3 renderer supports this). If you fail to do this, then you may at some point hit the maximum number of indices that can be rendered.
## Known Issues (Fix Me!)
2020-04-24 17:56:10 -04:00
- Mouse scroll zooming on a plot that is in scrollable ImGui region will both zoom and scroll the window since there is no built in scroll capture for ImGui. The current workaround is to CTRL+Scroll the plot (this disables window scrolling).
2020-04-25 09:47:54 -04:00
- Zooming to a range beyond the limits of `FLT_MAX` and `FLT_MIN` causes axes labels to disappear.