@datarailsshared/dr_renderer 1.2.358 → 1.2.359

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datarailsshared/dr_renderer",
3
- "version": "1.2.358",
3
+ "version": "1.2.359",
4
4
  "description": "DataRails charts and tables renderer",
5
5
  "keywords": [
6
6
  "datarails",
@@ -1086,7 +1086,7 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
1086
1086
  if (chartOptions.series) {
1087
1087
  for (var i = 0; i < chartOptions.series.length; i++) {
1088
1088
  seriesDataLength += chartOptions.series[i].data ? chartOptions.series[i].data.length : 0;
1089
- if (seriesDataLength > 2000) {
1089
+ if (seriesDataLength > 1000) {
1090
1090
  toMatch = true;
1091
1091
  break;
1092
1092
  }