Skip to content

Commit

Permalink
Build with logx fix for TGraph
Browse files Browse the repository at this point in the history
  • Loading branch information
linev committed Nov 26, 2024
1 parent 9950de3 commit 96de976
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion build/jsroot.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down Expand Up @@ -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 });

Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion modules/core.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit 96de976

Please sign in to comment.