Vertical Stick Chart

Overview

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

Quick Start

To build a Vertical Stick chart, use the anychart.vertical() or anychart.vertical() chart constructor. Then call the stick() method to create a Stick series.

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

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

Playground