Graph AxisColor 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 AxisColor { get; set; }

Property Value

Type: Color
Remarks

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

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