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

# IsTransparent

## Definition

Indicates the bars in the ChartStyle are transparent.

## Property Value

A bool which, when true, indicates that the **UpBrush**, **DownBrush**, and **Stroke.Brush** are all set to transparent. Returns false if any of the three are not transparent.

## Syntax

`IsTransparent`

## Examples

```csharp
protected override void OnStateChange()
{
   if (State == State.Configure)
   {
       //Print a message if the UpBrush, DownBrush, and Stroke.Brush are all transparent
       if (IsTransparent)
           Print("All bars are currently set to transparent");
   }
}

```