IsScrollArrowVisible

View as Markdown

Definition

Indicates the time-axis scroll arrow is visible in the top-right corner of the chart.

Property Value

A bool value. When True, indicates that the scroll arrow is visible on the chart; otherwise False.

Syntax

\<chartcontrol\>.IsScrollArrowVisible

Examples

1protected override void OnRender(ChartControl chartControl, ChartScale chartScale)
2{
3 // Print a message if the scroll arrow is visible on the chart
4 if(chartControl.IsScrollArrowVisible);
5 Print("The chart is currently not set to auto-scroll. Click the scroll arrow to return to auto-scrolling");
6}

Based on the image below, IsScrollArrowVisible confirms that the scroll arrow is currently visible on the chart.

ChartControl_IsScrollArrowVisible