Vertical Japanese Candlestick Chart

Overview

This article explains how to create a Vertical Japanese Candlestick 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 Japanese Candlestick Chart article to learn about other available settings.

Quick Start

To build a Vertical Japanese Candlestick chart, use the anychart.vertical() chart constructor. Then call the candlestick() method to create a Japanese Candlestick series.

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

// create a japanese candlestick series and set the data
var series = chart.candlestick(data);

Playground