IsXPropertiesVisible

View as Markdown

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\>.IsXPropertiesVisible

Examples

1protected override void OnStateChange()
2{
3 if (State == State.SetDefaults)
4 {
5 MyAnchor = new ChartAnchor();
6 MyAnchor.IsXPropertiesVisible = true;
7 }
8 else if (State == State.Configure)
9 {
10
11 }
12}