Navigation
Unreal Engine C++ API Reference > Developer > TraceInsights > Insights > ViewModels
References
Module | TraceInsights |
Header | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/GraphTrack.h |
Include | #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),
ShowVerticalAxisGrid = (1 << 8),
ShowHeader = (1 << 9),
FirstCustomOption = (1 << 10),
DefaultEnabledOptions = None,
DefaultVisibleOptions = ShowPoints | ShowPointsWithBorder | ShowLines | ShowPolygon | UseEventDuration | ShowBars,
DefaultEditableOptions = ShowPoints | ShowPointsWithBorder | ShowLines | ShowPolygon | UseEventDuration | ShowBars,
}
Values
Name | Description |
---|---|
None | |
ShowDebugInfo | |
ShowPoints | |
ShowPointsWithBorder | |
ShowLines | |
ShowPolygon | |
UseEventDuration | |
ShowBars | |
ShowBaseline | |
ShowVerticalAxisGrid | |
ShowHeader | |
FirstCustomOption | |
DefaultEnabledOptions | |
DefaultVisibleOptions | |
DefaultEditableOptions |
Remarks
Various available options for display.