Vertical Area Chart

Overview

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

Quick Start

To build a Vertical Area chart, use the anychart.verticalArea() or anychart.vertical() chart constructor. Then call the area() method to create an Area series.

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

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

Playground