Polar Area Chart

Overview

This article explains how to create a Polar Area chart in AnyChart.

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

Quick Start

To build a Polar Area chart, use the anychart.polar() chart constructor. Then call the area() method to create an Area series:

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

// create an area series and set the data
var series = chart.area(data);

Playground