GraphTests ChangePercentileSuffix 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 ChangePercentileSuffix()
Examples

[Test, CloseAfterFirstFrame]
public void ChangePercentileSuffix()
{
    Assert.AreEqual("", graph.PercentileSuffix);
    graph.PercentileSuffix = "%";
    graph.PercentileSuffix = "%";
    Assert.AreEqual("%", graph.PercentileSuffix);
}
See Also