highcharts-rails 4.2.6 → 4.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.markdown +46 -0
- data/Rakefile +1 -0
- data/app/assets/javascripts/highcharts.js +252 -171
- data/app/assets/javascripts/highcharts/highcharts-3d.js +2 -1
- data/app/assets/javascripts/highcharts/highcharts-more.js +81 -50
- data/app/assets/javascripts/highcharts/modules/boost.js +4 -0
- data/app/assets/javascripts/highcharts/modules/broken-axis.js +1 -1
- data/app/assets/javascripts/highcharts/modules/canvas-tools.js +1 -1
- data/app/assets/javascripts/highcharts/modules/data.js +4 -1
- data/app/assets/javascripts/highcharts/modules/drilldown.js +50 -51
- data/app/assets/javascripts/highcharts/modules/exporting.js +6 -5
- data/app/assets/javascripts/highcharts/modules/heatmap.js +24 -16
- data/app/assets/javascripts/highcharts/modules/no-data-to-display.js +1 -1
- data/app/assets/javascripts/highcharts/modules/offline-exporting.js +1 -2
- data/app/assets/javascripts/highcharts/modules/series-label.js +519 -0
- data/app/assets/javascripts/highcharts/modules/solid-gauge.js +1 -1
- data/app/assets/javascripts/highcharts/modules/treemap.js +6 -4
- data/lib/highcharts/version.rb +1 -1
- metadata +2 -1
@@ -1,5 +1,5 @@
|
|
1
1
|
/**
|
2
|
-
* @license Highcharts JS v4.2.
|
2
|
+
* @license Highcharts JS v4.2.7 (2016-09-21)
|
3
3
|
*
|
4
4
|
* (c) 2014 Highsoft AS
|
5
5
|
* Authors: Jon Arild Nygard / Oystein Moseng
|
@@ -719,9 +719,11 @@
|
|
719
719
|
};
|
720
720
|
|
721
721
|
// Crisp correction
|
722
|
-
|
723
|
-
|
724
|
-
|
722
|
+
if (point.shapeArgs) {
|
723
|
+
crispCorr = parseInt(pointAttribs['stroke-width'], 10) % 2 / 2;
|
724
|
+
point.shapeArgs.x -= crispCorr;
|
725
|
+
point.shapeArgs.y -= crispCorr;
|
726
|
+
}
|
725
727
|
});
|
726
728
|
// Call standard drawPoints
|
727
729
|
seriesTypes.column.prototype.drawPoints.call(this);
|
data/lib/highcharts/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: highcharts-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.2.
|
4
|
+
version: 4.2.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Per Christian B. Viken
|
@@ -87,6 +87,7 @@ files:
|
|
87
87
|
- app/assets/javascripts/highcharts/modules/map.js
|
88
88
|
- app/assets/javascripts/highcharts/modules/no-data-to-display.js
|
89
89
|
- app/assets/javascripts/highcharts/modules/offline-exporting.js
|
90
|
+
- app/assets/javascripts/highcharts/modules/series-label.js
|
90
91
|
- app/assets/javascripts/highcharts/modules/solid-gauge.js
|
91
92
|
- app/assets/javascripts/highcharts/modules/treemap.js
|
92
93
|
- app/assets/javascripts/highcharts/themes/dark-blue.js
|