Vertical Spline Chart

Overview

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

Quick Start

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

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

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

Playground