Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/UReporterGraph
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void SetAxesMinMax
(
const FVector2D& Min, |
Set the axis min and max data for both axes. | Debug/ReporterGraph.h | |
void SetAxesMinMax
(
float MinX, |
Set the axis min and max data for both axes. | Debug/ReporterGraph.h |
SetAxesMinMax(const FVector2D &, const FVector2D &)
Description
Set the axis min and max data for both axes.
| Name | SetAxesMinMax |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Debug/ReporterGraph.h |
| Include Path | #include "Debug/ReporterGraph.h" |
| Source | /Engine/Source/Runtime/Engine/Private/Debug/ReporterGraph.cpp |
void SetAxesMinMax
(
const FVector2D & Min,
const FVector2D & Max
)
Parameters
| Name | Remarks |
|---|---|
| MinX | The normalized minimum X data. |
| MinY | The normalized minimum Y data. |
SetAxesMinMax(float, float, float, float)
Description
Set the axis min and max data for both axes.
| Name | SetAxesMinMax |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Debug/ReporterGraph.h |
| Include Path | #include "Debug/ReporterGraph.h" |
| Source | /Engine/Source/Runtime/Engine/Private/Debug/ReporterGraph.cpp |
void SetAxesMinMax
(
float MinX,
float MaxX,
float MinY,
float MaxY
)
Parameters
| Name | Remarks |
|---|---|
| MinX | The normalized minimum X data. |
| MaxX | The normalized maximum X data. |
| MinY | The normalized minimum Y data. |
| MaxY | The normalized maximum Y data. |