Documentation

UI::Plot::HistogramFlags

Enum

Flags that can be passed to UI::Plot::PlotHistogram.

Values

UI::Plot::HistogramFlags::None (0)

UI::Plot::HistogramFlags::Horizontal (1024)

Histogram bars will be rendered horizontally (not supported by PlotHistogram2D)

UI::Plot::HistogramFlags::Cumulative (2048)

Each bin will contain its count plus the counts of all previous bins (not supported by PlotHistogram2D)

UI::Plot::HistogramFlags::Density (4096)

Counts will be normalized, i.e. the PDF will be visualized, or the CDF will be visualized if Cumulative is also set

UI::Plot::HistogramFlags::NoOutliers (8192)

Exclude values outside the specifed histogram range from the count toward normalizing and cumulative counts

UI::Plot::HistogramFlags::ColMajor (16384)

Data will be read in column major order (not supported by PlotHistogram)