Radar Line Chart

Overview

This article explains how to create a Radar Line chart in AnyChart.

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

Quick Start

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

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

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

Playground