Polar Range Column Chart
Overview
This article explains how to create a Polar Range Column 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 Range Column Chart article to learn about other available settings.
Quick Start
To build a Polar Range Column chart, use the anychart.polar() chart constructor. Then call the rangeColumn() method to create a Range Column series:
// create a chart
chart = anychart.polar();
// create a range column series and set the data
var series = chart.rangeColumn(data);
Special Settings
Point Size
This chart type allows you to set the size of its points. Read more in the Point Size article.