RemoveOldestPointsTests RenderTenPointRandomScrollingGraphOfDollars 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 RenderTenPointRandomScrollingGraphOfDollars()
Examples

[Test]
public void RenderTenPointRandomScrollingGraphOfDollars()
{
    new FilledRect(Rectangle.One, Color.Gray) { RenderLayer = int.MinValue };
    graph.PercentilePrefix = "$";
    Assert.AreEqual(10, graph.MaximumNumberOfPoints);
    graph.Start<AddValueEverySecond>();
}
See Also