Navigation
API > API/Developer > API/Developer/TraceInsights
Various available options for display.
| Name | EGraphOptions |
| Type | enum |
| Header File | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/GraphTrack.h |
| Include Path | #include "Insights/ViewModels/GraphTrack.h" |
Syntax
enum EGraphOptions
{
None = 0,
ShowDebugInfo = (1 << 0),
ShowPoints = (1 << 1),
ShowPointsWithBorder = (1 << 2),
ShowLines = (1 << 3),
ShowPolygon = (1 << 4),
UseEventDuration = (1 << 5),
ShowBars = (1 << 6),
ShowBaseline = (1 << 7),
ShowThresholds = (1 << 8),
ShowVerticalAxisGrid = (1 << 9),
ShowHeader = (1 << 10),
AutoZoomIncludesBaseline = (1 << 11),
AutoZoomIncludesThresholds = (1 << 12),
FirstCustomOption = (1 << 13),
DefaultEnabledOptions = None,
DefaultVisibleOptions = ShowPoints | ShowPointsWithBorder | ShowLines | ShowPolygon | UseEventDuration | ShowBars,
DefaultEditableOptions = ShowPoints | ShowPointsWithBorder | ShowLines | ShowPolygon | UseEventDuration | ShowBars,
}
Values
| Name | Remarks |
|---|---|
| None | |
| ShowDebugInfo | |
| ShowPoints | |
| ShowPointsWithBorder | |
| ShowLines | |
| ShowPolygon | |
| UseEventDuration | |
| ShowBars | |
| ShowBaseline | |
| ShowThresholds | |
| ShowVerticalAxisGrid | |
| ShowHeader | |
| AutoZoomIncludesBaseline | |
| AutoZoomIncludesThresholds | |
| FirstCustomOption | |
| DefaultEnabledOptions | |
| DefaultVisibleOptions | |
| DefaultEditableOptions |