Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
implot.h
✓ #include <implot.h>
Create a simple line plot
#include <implot.h>
#include <imgui.h>
int main() {
ImGui::CreateContext();
ImPlot::CreateContext();
ImGui::NewFrame();
if (ImPlot::BeginPlot("My Plot")) {
ImPlot::PlotLine("Line", [](int idx) { return (float)idx; }, [](int idx) { return (float)idx * idx; }, 100);
ImPlot::EndPlot();
}
ImGui::Render();
ImPlot::DestroyContext();
ImGui::DestroyContext();
return 0;
}
Audit
Dependencies
No dependency data recorded yet.
Resources
No resource links recorded.