> 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 displays (in any chart panel) to the left side of the chart.

## Property Value

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

## Syntax

`\<ChartControl\>.IsYAxisDisplayedLeft`

## Examples

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

Based on the image below, IsYAxisDisplayedLeft confirms that the y-axis displays to the left of the chart canvas.

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