DrawVerticalGridLines

View as Markdown

Definition

Plots vertical grid lines on the indicator panel.

The indicator panel’s parent chart has a similar option ‘Grid line - vertical’ which if Visible property set to false, will override the indicator’s local setting if true.

Property Value

This property returns true if vertical grid lines are plotted on the indicator panel; otherwise, false. Default set to true.

This property should ONLY be set from the OnStateChange() method during State.SetDefaults or State.Configure.

Syntax

DrawVerticalGridLines

Examples

1protected override void OnStateChange()
2{
3 if (State == State.SetDefaults)
4 {
5 DrawVerticalGridLines = false; // Vertical grid lines will not plot on the indicator panel
6 AddPlot(Brushes.Orange, "SMA");
7 }
8}