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

# ShowTransparentPlotsInDataBox

## Definition

Determines if plot(s) values which are set to a **Transparent** brush display in the chart data box. The default behavior is to hide any plots which have been configured as a **Transparent** brush, however this behavior can be changed by setting **ShowTransparentPlotsInDataBox** to true on the indicator.

## Property Value

This property returns true if transparent indicator plot(s) values display in the chart data box; otherwise, false. Default set to false.

This property should ONLY be set from the **OnStateChange()** method during **State.SetDefaults** or **State.Configure**.

## Syntax

`ShowTransparentPlotsInDataBox`

## Examples

```csharp
protected override void OnStateChange()
{
     if (State == State.SetDefaults)
     {
         ShowTransparentPlotsInDataBox = true;   
         AddPlot(Brushes.Transparent, "MyPlot");
     }
}
```