Scatter Line Chart

Overview

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

Please note that there are also Cartesian Line charts.

Quick Start

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

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

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

Note: Unlike basic Line charts, Scatter Lines can be vertical and can cross themselves.

Playground

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