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

[Test, CloseAfterFirstFrame]
public void ChangePercentileLabelsVisibility()
{
    Assert.IsFalse(graph.PercentileLabelsIsVisible);
    graph.PercentileLabelsIsVisible = true;
    graph.ArePercentileLabelsInteger = true;
    Assert.IsTrue(graph.PercentileLabelsIsVisible);
}
See Also