public final class ImPlotHistogramFlags
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static int |
ColMajor
data will be read in column major order (not supported by PlotHistogram)
|
static int |
Cumulative
each bin will contain its count plus the counts of all previous bins (not supported by PlotHistogram2D)
|
static int |
Density
counts will be normalized, i.e.
|
static int |
Horizontal
histogram bars will be rendered horizontally (not supported by PlotHistogram2D)
|
static int |
None
default
|
static int |
NoOutliers
exclude values outside the specifed histogram range from the count toward normalizing and cumulative counts
|
public static final int None
Definition: 0
public static final int Horizontal
Definition: 1 << 10
public static final int Cumulative
Definition: 1 << 11
public static final int Density
Definition: 1 << 12
public static final int NoOutliers
Definition: 1 << 13
public static final int ColMajor
Definition: 1 << 14