- πΊπΈUnited States bluegeek9
8.x-3.x is bug fixes only. We encourage everyone to migrate to 5.1.x.
First - a compliment for a great module!
When trying to override chart properties by using the provided Highcharts starterkit, all works well, until you want to override properties for the x and y axes.
For example, this statement in the class ChartsOverridesHighcharts, function chartOverrides works.
$options['plotOptions']['series']['dataLabels']['enabled'] = true;
If you try to override a property in one of the chart axes, the chart will not render at all.
$options['yAxis']['tickInterval'] = 0; // Remove the Y axis line completely.
The reason for this is the naming of the functions, e.g. "setAxisY", which conflicts with the options format expected by Highcharts - "yAxis". Further, yAxis is array keyed by the axis number and xAxis is an object (single axis).
Fixed
Highcharts integration
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
8.x-3.x is bug fixes only. We encourage everyone to migrate to 5.1.x.