Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
c0fe271
Add ImPlotSpec and remove existing plot item styling mechanisms (SetN…
epezent Sep 30, 2023
47ece5d
Make markers automatically cycle; adopt constexpr
epezent Sep 30, 2023
2ba8a2d
Make remaining applicable PlotX functions honor offset/stride; docs; …
epezent Sep 30, 2023
c129a61
remove DigitalBitHeight in favor of ImPlotSpec::Size; rename DigitalB…
epezent Oct 2, 2023
c96f18f
Add ImPlotStyle::DigitalPadding; add spec demo and docs
epezent Oct 2, 2023
b844d96
more doc additions/corrections
epezent Oct 2, 2023
c353f23
make ImPlotPoint::Clamp const
epezent Oct 2, 2023
d689156
ImPlotNextItemData HiddenCond reset
epezent Oct 2, 2023
e8baaa1
fix: compilation error after rebase
brenocq Nov 30, 2025
ff74c60
refactor: ImProp_X renamed to ImPlotProp_X
brenocq Feb 11, 2026
d7ccf1a
Merge branch 'master' into features/spec
brenocq Feb 11, 2026
7da4b7a
fix: linux workflow dependency installation
brenocq Feb 11, 2026
4214151
feat: add MarkerLineColor and MarkerFillColor to ImPlotProp
brenocq Feb 11, 2026
6ae00c5
refactor: revert template machinery to use raw pointers instead
brenocq Feb 11, 2026
23c1a79
feat: populate ImPlotSpec using (string, value) pair
brenocq Feb 11, 2026
dffceaf
feat: separate MarkerSize from error whisker/digital bar Size
brenocq Feb 11, 2026
8ef1a31
refactor: remove imgui_internal include
brenocq Feb 12, 2026
0570fdf
refactor: revert inline string,value pairs
brenocq Feb 12, 2026
712d081
refactor: increment IMPLOT_VERSION_NUM
brenocq Feb 12, 2026
9079992
docs: add SetNextXXX to obsolete API section
brenocq Feb 12, 2026
e25dc0b
docs: guide to migrate from SetNextXXX to ImPlotSpec
brenocq Feb 12, 2026
54cc2d2
Merge branch 'master' into features/spec
brenocq Feb 13, 2026
7935c87
refactor: rename PlotBubbles to PlotBubble
brenocq Feb 13, 2026
6eb254d
Merge branch 'master' into features/spec
brenocq Feb 13, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,19 +139,19 @@ A: ImPlot plotting functions accept most scalar types:

**Q: Can plot styles be modified?**

A: Yes. Data colormaps and various styling colors and variables can be pushed/popped or modified permanently on startup. Three default styles are available, as well as an automatic style that attempts to match you ImGui style.
A: Yes. Three default styles are available, as well as an automatic style that attempts to match you ImGui style. You can define any custom style as well. Plot items are generally styled for you based on the current colormap, but can be customized on an individual basis.

**Q: Does ImPlot support logarithmic scaling or time formatting?**
**Q: Does ImPlot support non-linear axis scaling? Time formatting?**

A: Yep! Both logscale and timescale are supported.
A: Yes. Logscale and symmetric logscale are provided out of the box, and you can define custom axis scales as well. Time scale with microsecond precision is also available out of the box.

**Q: Does ImPlot support multiple y-axes? x-axes?**

A: Yes. Up to three x-axes and three y-axes can be enabled.

**Q: Does ImPlot support [insert plot type]?**

A: Maybe. Check the demo, gallery, or Announcements ([2020](https://github.com/epezent/implot/issues/48)/[2021](https://github.com/epezent/implot/issues/168))to see if your desired plot type is shown. If not, consider submitting an issue or better yet, a PR!
A: Maybe. Check the demo, gallery, or Announcements ([2020](https://github.com/epezent/implot/issues/48)/[2021](https://github.com/epezent/implot/issues/168)/[2022](https://github.com/epezent/implot/discussions/370)) to see if your desired plot type is shown. If not, consider submitting an issue or better yet, a PR!

**Q: Does ImPlot support 3D plots?**

Expand Down
Loading