Skip to content

Commit

Permalink
Merge pull request #205 from jedrzejruta/bugfix/204-axisproto-v11-com…
Browse files Browse the repository at this point in the history
…patibility

bugfix/204-axisproto-v11-compatibility
  • Loading branch information
pawelfus authored Jun 5, 2023
2 parents 1e6db22 + 122a8fd commit c606806
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Go to project page to see this module in action: [http://blacklabel.github.io/gr
* For Highcharts version `>= 9.1.0` the plugin needs to be in version `>= 1.2.0`
* For Highcharts version `>= 10.0.0` the plugin needs to be in version `>= 1.3.0`
* For Highcharts version `>= 11.0.0` the plugin needs to be in version `>= 1.3.1`
* For Highcharts version `>= 11.1.0` the plugin needs to be in version `>= 1.3.2`

### Installation

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "highcharts-grouped-categories",
"version": "1.3.1",
"version": "1.3.2",
"homepage": "http://blacklabel.github.io/grouped_categories/",
"authors": [
"Sebastian Bochan <[email protected]>",
Expand Down
6 changes: 3 additions & 3 deletions grouped-categories.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}(function (HC) {
'use strict';
/**
* Grouped Categories v1.3.1 (2023-05-31)
* Grouped Categories v1.3.2 (2023-06-05)
*
* (c) 2012-2023 Black Label
*
Expand Down Expand Up @@ -180,9 +180,9 @@
// Axis prototype
//

axisProto.init = function (chart, options) {
axisProto.init = function (chart, options, coll) {
// default behaviour
protoAxisInit.call(this, chart, options);
protoAxisInit.call(this, chart, options, coll);

if (typeof options === 'object' && options.categories) {
this.setupGroups(options);
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Grouped-Categories",
"version": "1.3.1",
"version": "1.3.2",
"title": "Grouped Categories",
"author": {
"name": "Black Label",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "highcharts-grouped-categories",
"version": "1.3.1",
"version": "1.3.2",
"description": "Highcharts plugin to add grouped categories to charts.",
"main": "grouped-categories.js",
"repository": {
Expand Down

0 comments on commit c606806

Please sign in to comment.