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

# IsYAxisDisplayedRight

## Definition

Indicates the y-axis displays (in any chart panel) to the right side of the chart.

## Property Value

A boolean value. When **True**, indicates that the y-axis displays to the right of the chart canvas; otherwise **False**.

## Syntax

`\<chartcontrol\>.IsYAxisDisplayedRight`

## Examples

```csharp
protected override void OnRender(ChartControl chartControl, ChartScale chartScale)
{
   // Print the value of IsYAxisDisplayedRight
   Print("Y-Axis visible to the right of the chart canvas? " + chartControl.IsYAxisDisplayedRight);
}
```

Based on the image below, **IsYAxisDisplayedRight** confirms that the y-axis is not displayed to the right of the chart canvas.

![ChartControl\_IsYAxisDisplayedRight](https://fdr-prod-docs-files-public.s3.us-east-1.amazonaws.com/ninjatrader-public.docs.buildwithfern.com/57c229db73efd68237b26b09d6451631379c4df953bb6c0c2463e9db97783eba/docs/assets/developer/desktop-sdk/references/chartcontrol-isyaxisdisplayedright-chartcontrol-isyaxisdisplayedright.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=20260729T062253Z&X-Amz-Expires=604800&X-Amz-Signature=b95b3e0dbac010459d24245fa8bf0cb2c354f936e4bdee4610f793c6d0dc39d7&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject)