struct ImPlotTick

Overview

#include <implot_internal.h>

struct ImPlotTick
{
    // fields

    double PlotPos;
    float PixelPos;
    ImVec2 LabelSize;
    int TextOffset;
    bool Major;
    bool ShowLabel;
    int Level;
    int Idx;

    // construction

    ImPlotTick();

    ImPlotTick(
        double value,
        bool major,
        int level,
        bool show_label
        );
};