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

# ArePlotsConfigurable

## Definition

Determines if the plot(s) used in an indicator are configurable within the indicator dialog window.

## Property Value

A **bool** which returns true if any indicator plot(s) are configurable; otherwise, false. Default set to true.

## Syntax

`ArePlotsConfigurable`

## Examples

```csharp
  protected override void OnStateChange()
  {
      if (State == State.SetDefaults)
      {
          AddPlot(Brushes.Orange, "SMA");
          ArePlotsConfigurable = false; // Plots are not configurable in the indicator dialog
      }
  }
```