Polar Marker Chart

Overview

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

Quick Start

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

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

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

Playground