GraphTests HiddenGraphDisplaysNothing Method Delta Engine Documentation

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

public void HiddenGraphDisplaysNothing()
Examples

[Test]
public void HiddenGraphDisplaysNothing()
{
    graph.NumberOfPercentiles = 5;
    GraphLine line = graph.CreateLine("", LineColor);
    line.AddPoint(new Vector2D(-1.0f, -1.0f));
    line.AddPoint(new Vector2D(0.1f, 0.5f));
    graph.IsVisible = false;
}
See Also