Skip to main content

CandlestickChartSpot

Represents a candlestick rendered on a CandlestickChart.

Inherits: BaseControl

Properties

  • close - The close value of the candlestick.
  • high - The high value of the candlestick.
  • low - The low value of the candlestick.
  • open - The open value of the candlestick.
  • selected - Whether to treat this candlestick as selected.
  • show_tooltip - Whether the tooltip should be shown when this candlestick is highlighted.
  • tooltip - Tooltip configuration for this candlestick.
  • x - The position of the candlestick on the X axis.

Properties

closeinstance-attribute

close: Number

The close value of the candlestick.

highinstance-attribute

high: Number

The high value of the candlestick.

lowinstance-attribute

low: Number

The low value of the candlestick.

openinstance-attribute

open: Number

The open value of the candlestick.

selectedclass-attributeinstance-attribute

selected: bool = False

Whether to treat this candlestick as selected.

show_tooltipclass-attributeinstance-attribute

show_tooltip: bool = True

Whether the tooltip should be shown when this candlestick is highlighted.

tooltipclass-attributeinstance-attribute

tooltip: Union[CandlestickChartSpotTooltip, str] = field(default_factory=(lambda: CandlestickChartSpotTooltip()))

Tooltip configuration for this candlestick.

xinstance-attribute

x: Number

The position of the candlestick on the X axis.