> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.ninjatrader.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.ninjatrader.com/_mcp/server.

# IsScrollArrowVisible

## 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

```csharp

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](https://fdr-prod-docs-files-public.s3.us-east-1.amazonaws.com/ninjatrader-public.docs.buildwithfern.com/cd33c30f3d114ffafc94fea75caf3740913b9d9f6711ff811b3bbbc6a459c725/docs/assets/developer/desktop-sdk/references/isscrollarrowvisible-chartcontrol-isscrollarrowvisible.png?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIA6KXJSKKNFOCF7G4B%2F20260729%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260729T062250Z&X-Amz-Expires=604800&X-Amz-Signature=d02ab82f20fcf4ae96fcf6ceccf24941949e0b7444945013684b493e9c60433f&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject)