The Highcharts library has the ability to plot charts using a polar coordinate system.

From https://api.highcharts.com/highcharts/chart.polar

This is a request to allow the Charts module to leverage this functionality.

Comments

John Cook created an issue. See original summary.

john cook’s picture

I've created a patch to allow this functionality. Currently it works when used as an API, but not when used with Views.

I added the following line to the example code to test:
$options['polar'] = TRUE;

Before the patch the area example using Highcharts looked like this:

And after the patch:

As Google Charts does not currently implement a polar coordinate system, the setting is ignored and the output looks like:

  • andileco committed b8a763a on 8.x-3.x
    Issue #2944087 by John Cook, andileco: Add polar plotting to Highcharts...
andileco’s picture

Status: Needs review » Fixed

I went ahead and added Views/Blocks integration, which required small changes to the patch.

andileco’s picture

Status: Fixed » Closed (fixed)