@datarailsshared/dr_renderer 1.2.224-dragons → 1.2.226-dragons
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
|
@@ -1490,14 +1490,14 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
|
|
|
1490
1490
|
chart_series.push(resultObject);
|
|
1491
1491
|
chart_series.push(
|
|
1492
1492
|
{
|
|
1493
|
-
name: '
|
|
1493
|
+
name: 'Positive',
|
|
1494
1494
|
visible: false,
|
|
1495
1495
|
color: waterfallOptions.colors.increase
|
|
1496
1496
|
});
|
|
1497
1497
|
|
|
1498
1498
|
chart_series.push(
|
|
1499
1499
|
{
|
|
1500
|
-
name: '
|
|
1500
|
+
name: 'Negative',
|
|
1501
1501
|
visible: false,
|
|
1502
1502
|
color: waterfallOptions.colors.decrease
|
|
1503
1503
|
});
|
|
@@ -3377,7 +3377,6 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
|
|
|
3377
3377
|
if (disableAnimation) {
|
|
3378
3378
|
chartOptions.chart.animation = false;
|
|
3379
3379
|
}
|
|
3380
|
-
const walkthroughFieldIsNotSet = lodash.some(pivotData.getRowKeys(), rowKey => !rowKey || lodash.isArray(rowKey) && !rowKey.length);
|
|
3381
3380
|
|
|
3382
3381
|
chartOptions.xAxis = {
|
|
3383
3382
|
type: 'category',
|
|
@@ -3386,7 +3385,7 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
|
|
|
3386
3385
|
title: {
|
|
3387
3386
|
text : additionOptions && additionOptions.axisX ? additionOptions.axisX.name : '',
|
|
3388
3387
|
},
|
|
3389
|
-
uniqueNames:
|
|
3388
|
+
uniqueNames: false,
|
|
3390
3389
|
};
|
|
3391
3390
|
|
|
3392
3391
|
highchartsRenderer.setTitleAndSubTitle(chartOptions, opts, additionOptions);
|