Vertical Marker Chart

Overview

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

Quick Start

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

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

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

Playground