struct ImPlotDateTimeSpec

Overview

#include <implot_internal.h>

struct ImPlotDateTimeSpec
{
    // fields

    ImPlotDateFmt Date;
    ImPlotTimeFmt Time;
    bool UseISO8601;
    bool Use24HourClock;

    // construction

    ImPlotDateTimeSpec();

    ImPlotDateTimeSpec(
        ImPlotDateFmt date_fmt,
        ImPlotTimeFmt time_fmt,
        bool use_24_hr_clk = false,
        bool use_iso_8601 = false
        );
};