struct ImPlotTagCollection

Overview

#include <implot_internal.h>

struct ImPlotTagCollection
{
    // fields

    ImVector<ImPlotTag> Tags;
    ImGuiTextBuffer TextBuffer;
    int Size;

    // methods

    void AppendV(
        ImAxis axis,
        double value,
        ImU32 bg,
        ImU32 fg,
        const char* fmt,
        va_list args
        );

    void Append(
        ImAxis axis,
        double value,
        ImU32 bg,
        ImU32 fg,
        const char* fmt,
        ...
        );

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