public final class ImPlotFlags
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static int |
AntiAliased
plot lines will be software anti-aliased (not recommended for high density plots, prefer MSAA)
|
static int |
CanvasOnly |
static int |
Crosshairs
the default mouse cursor will be replaced with a crosshair when hovered
|
static int |
Equal
primary x and y axes will be constrained to have the same units/pixel (does not apply to auxiliary y-axes)
|
static int |
NoBoxSelect
the user will not be able to box-select with right-click drag
|
static int |
NoChild
a child window region will not be used to capture mouse scroll (can boost performance for single ImGui window applications)
|
static int |
NoHighlight
plot items will not be highlighted when their legend entry is hovered
|
static int |
NoLegend
the legend will not be displayed
|
static int |
NoMenus
the user will not be able to open context menus with right-click
|
static int |
NoMousePos
the mouse position, in plot coordinates, will not be displayed inside of the plot
|
static int |
None
default
|
static int |
NoTitle
the plot title will not be displayed (titles are also hidden if preceeded by double hashes, e.g.
|
static int |
Query
the user will be able to draw query rects with middle-mouse or CTRL + right-click drag
|
static int |
YAxis2
enable a 2nd y-axis on the right side
|
static int |
YAxis3
enable a 3rd y-axis on the right side
|
public static final int None
public static final int NoTitle
public static final int NoLegend
public static final int NoMenus
public static final int NoBoxSelect
public static final int NoMousePos
public static final int NoHighlight
public static final int NoChild
public static final int Equal
public static final int YAxis2
public static final int YAxis3
public static final int Query
public static final int Crosshairs
public static final int AntiAliased
public static final int CanvasOnly