struct ImPlotAnnotationCollection

Overview

#include <implot_internal.h>

struct ImPlotAnnotationCollection
{
    // fields

    ImVector<ImPlotAnnotation> Annotations;
    ImGuiTextBuffer TextBuffer;
    int Size;

    // methods

    void AppendV(
        const ImVec2& pos,
        const ImVec2& off,
        ImU32 bg,
        ImU32 fg,
        bool clamp,
        const char* fmt,
        va_list args
        );

    void Append(
        const ImVec2& pos,
        const ImVec2& off,
        ImU32 bg,
        ImU32 fg,
        bool clamp,
        const char* fmt,
        ...
        );

    const char* GetText(int idx);
    void Reset();
};