Skip to content

@shbernal/ts-pptx


@shbernal/ts-pptx / index / ChartPropsChartStock

Interface: ChartPropsChartStock

Defined in: src/types/chart.ts:673

Extended by

Properties

stockStyle?

optional stockStyle?: "hlc" | "ohlc" | "vhlc" | "vohlc"

Defined in: src/types/chart.ts:685

Stock (high-low-close) chart style — selects how many value series the chart expects and how they are drawn. The data series must be supplied in the exact order implied by the style:

  • 'hlc' — High, Low, Close (3 series). The close is marked with a dot.
  • 'ohlc' — Open, High, Low, Close (4 series). Open→close is drawn as up/down bars.
  • 'vhlc' — Volume, High, Low, Close (4 series). Volume is a column on its own axis.
  • 'vohlc' — Volume, Open, High, Low, Close (5 series). Volume column + up/down bars.

<c:hiLowLines> connect the high/low of each category in every style.

Default

ts
'hlc'