Class GraphConfiguration
Graph configuration used by DisplayElementConfiguration. This configuration contain all information about a Graph.
Inherited Members
Namespace: Unity.Multiplayer.Tools.NetStatsMonitor
Syntax
[Serializable]
public sealed class GraphConfiguration
Properties
LineGraphConfiguration
Line-graph specific options.
Declaration
public LineGraphConfiguration LineGraphConfiguration { get; set; }
Property Value
Type | Description |
---|---|
LineGraphConfiguration |
SampleCount
The number of samples that are maintained for the purpose of graphing.
Declaration
public int SampleCount { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Remarks
The value is clamped to the range [8, 4096].
VariableColors
List of colors to override the default colors of the graph.
Declaration
public List<Color> VariableColors { get; set; }
Property Value
Type | Description |
---|---|
List<Color> |
XAxisType
The units used for displaying the bounds of the graph's x-axis. By default the graph bounds are displayed in units of sample count. If set to time, the the x-axis graph bounds will display the time over which these samples were collected.
Declaration
public GraphXAxisType XAxisType { get; set; }
Property Value
Type | Description |
---|---|
GraphXAxisType |