@datarailsshared/dr_renderer 1.3.42 → 1.3.43
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
@@ -2104,8 +2104,8 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
|
|
2104
2104
|
opposite: true,
|
2105
2105
|
tickPositioner: function () {
|
2106
2106
|
const primaryAxisTicksCount = this.chart.yAxis[0].tickPositions.length;
|
2107
|
-
const minFromSettings =
|
2108
|
-
const maxFromSettings =
|
2107
|
+
const minFromSettings = parseFloat(lodash.get(opts, 'comboOptions.secondaryAxisSettings.min'));
|
2108
|
+
const maxFromSettings = parseFloat(lodash.get(opts, 'comboOptions.secondaryAxisSettings.max'));
|
2109
2109
|
let secondaryAxisMin = !isNaN(minFromSettings) ? minFromSettings : this.tickPositions[0];
|
2110
2110
|
let secondaryAxisMax = !isNaN(maxFromSettings) ? maxFromSettings : this.tickPositions[this.tickPositions.length - 1];
|
2111
2111
|
|