> 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 is visible on the right side of the chart panel.

## Property Value

A **bool** indicating the y-axis is visible to the right

## Syntax

`ChartPanel.IsYAxisDisplayedRight`

## Examples

```csharp
protected override void OnRender(ChartControl chartControl, ChartScale chartScale)

{

   base.OnRender(chartControl, chartScale);

   // Print a message if the y-axis is visible on the right

   if (ChartPanel.IsYAxisDisplayedRight)

       Print("The y-axis is visible on the right");

}
```

Based on the image below, **IsYAxisDisplayedRight** confirms that the y-axis is not displayed on the right. The property would be set to false when applied in either chart panel in this instance.

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