Vertical Box Chart

Overview

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

Quick Start

To build a Vertical Box chart, use the anychart.vertical() chart constuctor. Then call the box() method to create a Box series.

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

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

Playground

You are looking at an outdated v7 version of this document. Switch to the v8 version to see the up to date information.