diff --git a/build/jsroot.js b/build/jsroot.js index 40a0c3ad6..18157851f 100644 --- a/build/jsroot.js +++ b/build/jsroot.js @@ -12,7 +12,7 @@ const version_id = 'dev', /** @summary version date * @desc Release date in format day/month/year like '14/04/2022' */ -version_date = '25/11/2024', +version_date = '26/11/2024', /** @summary version id and date * @desc Produced by concatenation of {@link version_id} and {@link version_date} @@ -65839,6 +65839,7 @@ class TFramePainter extends ObjectPainter { ignore_labels: this.x_ignore_labels, noexp_changed: this.x_noexp_changed, symlog: this.swap_xy ? opts.symlog_y : opts.symlog_x, + log_min_nz: opts.xmin_nz && (opts.xmin_nz <= this.xmax) ? 0.9*opts.xmin_nz : 0, logcheckmin: (opts.ndim > 1) || !this.swap_xy, logminfactor: logminfactorX }); @@ -75213,6 +75214,7 @@ class THistPainter extends ObjectPainter { zoom_xmax: this.zoom_xmax, zoom_ymin: this.zoom_ymin, zoom_ymax: this.zoom_ymax, + xmin_nz: histo.$xmin_nz, ymin_nz: this.ymin_nz ?? histo.$ymin_nz, swap_xy: this.options.swap_xy(), reverse_x: this.options.RevX, @@ -148194,6 +148196,7 @@ let TGraphPainter$1 = class TGraphPainter extends ObjectPainter { } } + histo.$xmin_nz = xmin > 0 ? xmin : undefined; histo.$ymin_nz = ymin > 0 ? ymin : undefined; return histo; diff --git a/modules/core.mjs b/modules/core.mjs index c16a97320..b9224900b 100644 --- a/modules/core.mjs +++ b/modules/core.mjs @@ -4,7 +4,7 @@ const version_id = 'dev', /** @summary version date * @desc Release date in format day/month/year like '14/04/2022' */ -version_date = '25/11/2024', +version_date = '26/11/2024', /** @summary version id and date * @desc Produced by concatenation of {@link version_id} and {@link version_date}