Vertical OHLC Chart

Overview

This article explains how to create a Vertical OHLC chart in AnyChart.

To learn more about vertical charts in general and how to customize them, see Vertical Charts (Overview). You can also read the OHLC Chart article to learn about other available settings.

Quick Start

To build a Vertical OHLC chart, use the anychart.vertical() chart constructor. Then call the ohlc() method to create an OHLC series.

// create a chart
chart = anychart.vertical();

// create an OHLC series and set the data
var series = chart.ohlc(data);

Playground