Vertical Step Line Chart

Overview

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

Quick Start

To build a Vertical Step Line chart, use the anychart.verticalLine() or anychart.vertical() chart constructor. Then call the stepLine() method to create a Step Line series.

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

// create a step line series and set the data
var series = chart.stepLine(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.