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

# IsYAxisDisplayedLeft

## Definition

Indicates the y-axis is visible on the left side of the chart panel.

## Property Value

A bool indicating the y-axis is visible to the left

## Syntax

`ChartPanel.IsYAxisDisplayedLeft`

## 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 left
   if (ChartPanel.IsYAxisDisplayedLeft)
       Print("The y-axis is visible on the left");
}
```

Based on the image below, **IsYAxisDisplayedLeft** confirms that the y-axis displays to the left. In this image, the property would be set to true when applied to either chart panel.

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