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

# Time

## Definition

Determines date/time value the chart anchor is drawn.

## Property Value

An **DateTime** value representing a time value

## Syntax

`\<ChartAnchor\>.Time`

## Examples

```csharp
public override void OnMouseDown(ChartControl chartControl, ChartPanel chartPanel, ChartScale chartScale, Point point)
{
	Print(MyAnchor.Time); // prints the X axis datetime of the chart anchor
	// 8/26/2014 6:55:00 PM
}
```