Skip to main content

Brick Struct

Definition

Assembly:Avalonia.Controls.Charts
Package:Avalonia.Controls.Charts

Represents a single brick in a Renko chart.

public struct Brick

Inheritance: ValueType -> Brick

Constructors

NameDescription
BrickInitializes a new instance of the Avalonia.Controls.Charts.Brick struct.

Brick Constructor

Initializes a new instance of the Avalonia.Controls.Charts.Brick struct.

public Brick(double start, double end, bool isUp)

Parameters

start double

end double

isUp bool

Properties

NameDescription
HighGets the high price.
IsUpGets a value indicating whether the brick is up.
LowGets the low price.

High Property

Gets the high price.

public double High { get; set; }

IsUp Property

Gets a value indicating whether the brick is up.

public bool IsUp { get; set; }

Low Property

Gets the low price.

public double Low { get; set; }