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

# ScaleJustification

## Definition

Indicates the location of the chart scale relative to the chart control.

## Property Value

A **ScaleJustification** enum. Possible values are:

* **Right**
* **Left**
* **Overlay**

## Syntax

`ScaleJustification`

## Examples

```csharp
protected override void OnRender(ChartControl chartControl, ChartScale chartScale)
{
   if (chartScale.ScaleJustification == ScaleJustification.Right)
   {
     // do something
   }

}
```