@@ -11,7 +11,7 @@ const version_id = 'dev',
1111
1212/** @summary version date
1313 * @desc Release date in format day/month/year like '14/04/2022' */
14- version_date = '20 /02/2024',
14+ version_date = '21 /02/2024',
1515
1616/** @summary version id and date
1717 * @desc Produced by concatenation of {@link version_id} and {@link version_date}
@@ -63912,7 +63912,7 @@ class TFramePainter extends ObjectPainter {
6391263912 noexp_changed: this.y_noexp_changed,
6391363913 symlog: this.swap_xy ? opts.symlog_x : opts.symlog_y,
6391463914 logcheckmin: (opts.ndim < 2) || this.swap_xy,
63915- log_min_nz: opts.ymin_nz && (opts.ymin_nz < 0.01* this.ymax) ? 0.3 * opts.ymin_nz : 0,
63915+ log_min_nz: opts.ymin_nz && (opts.ymin_nz < this.ymax) ? 0.9* opts.ymin_nz : 0,
6391663916 logminfactor: logminfactorY });
6391763917
6391863918 this.y_handle.assignFrameMembers(this, 'y');
@@ -79214,8 +79214,7 @@ let TH1Painter$2 = class TH1Painter extends THistPainter {
7921479214 else
7921579215 hsum += histo.getBinContent(0) + histo.getBinContent(this.nbinsx + 1);
7921679216
79217- this.stat_entries = hsum;
79218- if (histo.fEntries > 1) this.stat_entries = histo.fEntries;
79217+ this.stat_entries = (histo.fEntries > 1) ? histo.fEntries : hsum;
7921979218
7922079219 this.hmin = hmin;
7922179220 this.hmax = hmax;
0 commit comments