Scatter Marker Chart

Overview

This article explains how to create a Scatter Marker chart in AnyChart.

To learn more about scatter charts in general and how to customize them, see Scatter Charts (Overview). In addition, you can read the Marker Chart article to learn about other available settings.

Please note that there are also Cartesian Marker charts.

Quick Start

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

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

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

Note: There is also the anychart.marker() chart constructor. When you pass your data to this constructor or call the marker() method after using it, a Scatter Marker chart is created. However, you can create basic Marker charts too - see Marker Chart.

Playground