Graph PercentileColor Property Delta Engine Documentation

Namespace: DeltaEngine.Rendering2D.Graphs
Assembly: DeltaEngine.Rendering2D.Graphs (in DeltaEngine.Rendering2D.Graphs.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public Color PercentileColor { get; set; }

Property Value

Type: Color
Remarks

Tests: DeltaEngine.Rendering2D.Graphs.Tests.GraphTests
Examples

1 unit tests call DeltaEngine.Rendering2D.Graphs.Graph.PercentileColor
[Test, CloseAfterFirstFrame]
public void ChangePercentileColor()
{
    Assert.AreEqual(Color.Gray, graph.PercentileColor);
    graph.PercentileColor = Color.White;
    graph.PercentileColor = Color.White;
    Assert.AreEqual(Color.White, graph.PercentileColor);
}
See Also