IsXPropertiesVisible

<< Click to Display Table of Contents >>

Navigation:  NinjaScript > Language Reference > Drawing Tool > ChartAnchor >

IsXPropertiesVisible

Previous page Return to chapter overview Next page

Definition

Indicates the anchor's X properties are visible on the UI.  When set to true, the X values can be viewed from the Drawing Objects properties.

 

Property Value

A bool value which when true will display the anchor's X (time) data values from the drawing object properties; otherwise false.  Default value is true.

 

Syntax

<ChartAnchor>.IsXPropertiesVisibile

 

Examples

ns

protected override void OnStateChange()
{
    if (State == State.SetDefaults)

    {

MyAnchor = new ChartAnchor();

MyAnchor.IsXPropertiesVisible = true;

    }

    else if (State == State.Configure)

    {

 

    }
}