struct ImPlotSubplot

Overview

#include <implot_internal.h>

struct ImPlotSubplot
{
    // fields

    ImGuiID ID;
    ImPlotSubplotFlags Flags;
    ImPlotSubplotFlags PreviousFlags;
    ImPlotItemGroup Items;
    int Rows;
    int Cols;
    int CurrentIdx;
    ImRect FrameRect;
    ImRect GridRect;
    ImVec2 CellSize;
    ImVector<ImPlotAlignmentData> RowAlignmentData;
    ImVector<ImPlotAlignmentData> ColAlignmentData;
    ImVector<float> RowRatios;
    ImVector<float> ColRatios;
    ImVector<ImPlotRange> RowLinkData;
    ImVector<ImPlotRange> ColLinkData;
    float TempSizes[2];
    bool FrameHovered;
    bool HasTitle;
};