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

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

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

ChartControl_IsScrollArrowVisible