@@ -12,7 +12,7 @@ const version_id = 'dev',
12
12
13
13
/** @summary version date
14
14
* @desc Release date in format day/month/year like '14/04/2022' */
15
- version_date = '21 /11/2024',
15
+ version_date = '22 /11/2024',
16
16
17
17
/** @summary version id and date
18
18
* @desc Produced by concatenation of {@link version_id} and {@link version_date}
@@ -63129,11 +63129,11 @@ class TAxisPainter extends ObjectPainter {
63129
63129
const gr_range = Math.abs(this.func.range()[1] - this.func.range()[0]);
63130
63130
63131
63131
// avoid black filling by middle-size
63132
- if ((handle.middle.length <= handle.major.length) || (handle.middle.length > gr_range/3.5 ))
63132
+ if ((handle.middle.length <= handle.major.length) || (handle.middle.length > gr_range))
63133
63133
handle.minor = handle.middle = handle.major;
63134
63134
else if ((this.nticks3 > 1) && !this.log) {
63135
63135
handle.minor = this.produceTicks(handle.middle.length, this.nticks3);
63136
- if ((handle.minor.length <= handle.middle.length) || (handle.minor.length > gr_range/1.7 ))
63136
+ if ((handle.minor.length <= handle.middle.length) || (handle.minor.length > gr_range))
63137
63137
handle.minor = handle.middle;
63138
63138
}
63139
63139
}
@@ -70619,7 +70619,7 @@ class TPadPainter extends ObjectPainter {
70619
70619
70620
70620
const mainid = this.selectDom().attr('id');
70621
70621
70622
- if (!this.isBatchMode() && !this.use_openui && !this.brlayout && mainid && isStr(mainid)) {
70622
+ if (!this.isBatchMode() && !this.use_openui && !this.brlayout && mainid && isStr(mainid) && !getHPainter() ) {
70623
70623
this.brlayout = new BrowserLayout(mainid, null, this);
70624
70624
this.brlayout.create(mainid, true);
70625
70625
this.setDom(this.brlayout.drawing_divid()); // need to create canvas
@@ -72588,13 +72588,8 @@ class TPavePainter extends ObjectPainter {
72588
72588
const h2 = Math.round(height/2), w2 = Math.round(width/2),
72589
72589
dpath = `l${w2},${-h2}l${w2},${h2}l${-w2},${h2}z`;
72590
72590
72591
- if ((brd > 1) && (pt.fShadowColor > 0) && (dx || dy) && !this.fillatt.empty() && !noborder) {
72592
- this.draw_g.append('svg:path')
72593
- .attr('d', 'M0,'+(h2+brd) + dpath)
72594
- .style('fill', this.getColor(pt.fShadowColor))
72595
- .style('stroke', this.getColor(pt.fShadowColor))
72596
- .style('stroke-width', '1px');
72597
- }
72591
+ if (!this.fillatt.empty())
72592
+ this.drawBorder(this.draw_g, width, height, dpath);
72598
72593
72599
72594
interactive_element = this.draw_g.append('svg:path')
72600
72595
.attr('d', 'M0,'+h2 +dpath)
@@ -72606,26 +72601,8 @@ class TPavePainter extends ObjectPainter {
72606
72601
72607
72602
return this.drawPaveText(w2, h2, arg, text_g);
72608
72603
} else {
72609
- // add shadow decoration before main rect
72610
- if ((brd > 1) && (pt.fShadowColor > 0) && !pt.fNpaves && (dx || dy) && !noborder) {
72611
- const scol = this.getColor(pt.fShadowColor);
72612
- let spath = '';
72613
-
72614
- if ((dx < 0) && (dy < 0))
72615
- spath = `M0,0v${height-brd}h${-brd}v${-height}h${width}v${brd}z`;
72616
- else if ((dx < 0) && (dy > 0))
72617
- spath = `M0,${height}v${brd-height}h${-brd}v${height}h${width}v${-brd}z`;
72618
- else if ((dx > 0) && (dy < 0))
72619
- spath = `M${brd},0v${-brd}h${width}v${height}h${-brd}v${brd-height}z`;
72620
- else
72621
- spath = `M${width},${brd}h${brd}v${height}h${-width}v${-brd}h${width-brd}z`;
72622
-
72623
- this.draw_g.append('svg:path')
72624
- .attr('d', spath)
72625
- .style('fill', scol)
72626
- .style('stroke', scol)
72627
- .style('stroke-width', '1px');
72628
- }
72604
+ if (!pt.fNpaves)
72605
+ this.drawBorder(this.draw_g, width, height);
72629
72606
72630
72607
if (pt.fNpaves) {
72631
72608
for (let n = pt.fNpaves-1; n > 0; --n) {
@@ -72669,6 +72646,45 @@ class TPavePainter extends ObjectPainter {
72669
72646
});
72670
72647
}
72671
72648
72649
+ drawBorder(draw_g, width, height, diamond) {
72650
+ const pt = this.getObject(),
72651
+ opt = pt.fOption.toUpperCase(),
72652
+ noborder = opt.indexOf('NB') >= 0,
72653
+ dx = (opt.indexOf('L') >= 0) ? -1 : ((opt.indexOf('R') >= 0) ? 1 : 0),
72654
+ dy = (opt.indexOf('T') >= 0) ? -1 : ((opt.indexOf('B') >= 0) ? 1 : 0);
72655
+
72656
+ if ((pt.fBorderSize < 2) || (pt.fShadowColor === 0) || (!dx && !dy) || noborder)
72657
+ return;
72658
+
72659
+ const scol = this.getColor(pt.fShadowColor),
72660
+ brd = pt.fBorderSize;
72661
+
72662
+ if (diamond) {
72663
+ draw_g.append('svg:path')
72664
+ .attr('d', `M0,${Math.round(height/2)+brd}${diamond}`)
72665
+ .style('fill', scol)
72666
+ .style('stroke', scol)
72667
+ .style('stroke-width', '1px');
72668
+ } else {
72669
+ let spath = '';
72670
+
72671
+ if ((dx < 0) && (dy < 0))
72672
+ spath = `M0,0v${height-brd-1}h${-brd+1}v${-height+2}h${width-2}v${brd-1}z`;
72673
+ else if ((dx < 0) && (dy > 0))
72674
+ spath = `M0,${height}v${brd+1-height}h${-brd+1}v${height-2}h${width-2}v${-brd+1}z`;
72675
+ else if ((dx > 0) && (dy < 0))
72676
+ spath = `M${brd+1},0v${-brd+1}h${width-2}v${height-2}h${-brd+1}v${brd+1-height}z`;
72677
+ else
72678
+ spath = `M${width},${brd+1}h${brd-1}v${height-2}h${-width+2}v${-brd+1}h${width-brd-2}z`;
72679
+
72680
+ draw_g.append('svg:path')
72681
+ .attr('d', spath)
72682
+ .style('fill', scol)
72683
+ .style('stroke', scol)
72684
+ .style('stroke-width', '1px');
72685
+ }
72686
+ }
72687
+
72672
72688
/** @summary Fill option object used in TWebCanvas */
72673
72689
fillWebObjectOptions(res) {
72674
72690
const pave = this.getObject();
@@ -72918,25 +72934,31 @@ class TPavePainter extends ObjectPainter {
72918
72934
if (this.isTitle())
72919
72935
this.draw_g.style('display', !num_txt ? 'none' : null);
72920
72936
72921
- if (draw_header) {
72922
- const x = Math.round(width*0.25),
72923
- y = Math.round(-height*0.02),
72937
+
72938
+ return Promise.all(promises).then(() => this);
72939
+ }).then(() => {
72940
+
72941
+ if (!draw_header)
72942
+ return;
72943
+
72944
+ const x = Math.round(width*0.25),
72945
+ y = Math.round(-pad_height*0.02),
72924
72946
w = Math.round(width*0.5),
72925
- h = Math.round(height *0.04),
72926
- lbl_g = text_g.append('svg:g');
72947
+ h = Math.round(pad_height *0.04),
72948
+ lbl_g = text_g.append('svg:g').attr('transform', makeTranslate(x,y)) ;
72927
72949
72928
- lbl_g.append('svg:path')
72929
- .attr('d', `M${x},${y}h${w}v${h}h${-w}z`)
72930
- .call(this.fillatt.func)
72931
- .call(this.lineatt.func);
72950
+ this.drawBorder(lbl_g, w, h);
72932
72951
72933
- promises.push(this.startTextDrawingAsync(this.textatt.font, h/1.5, lbl_g )
72934
- .then(() => this.drawText({ align: 22, x, y, width: w, height: h, text: pt.fLabel, color: this.textatt.color, draw_g: lbl_g }) )
72935
- .then(() => promises.push( this.finishTextDrawing(lbl_g))));
72936
- }
72952
+ lbl_g.append('svg:path' )
72953
+ .attr('d', `M${0},${0}h${w}v${h}h${-w}z` )
72954
+ .call( this.fillatt.func)
72955
+ .call(this.lineatt.func);
72937
72956
72938
- return Promise.all(promises).then(() => this);
72939
- });
72957
+ return this.startTextDrawingAsync(this.textatt.font, 0.9*h, lbl_g)
72958
+ .then(() => this.drawText({ align: 22, x: 0, y: 0, width: w, height: h, text: pt.fLabel, color: this.textatt.color, draw_g: lbl_g }))
72959
+ .then(() => promises.push(this.finishTextDrawing(lbl_g)));
72960
+
72961
+ }).then(() => { return this; })
72940
72962
}
72941
72963
72942
72964
/** @summary Method used to convert value to string according specified format
@@ -72954,14 +72976,9 @@ class TPavePainter extends ObjectPainter {
72954
72976
return value.toFixed(0);
72955
72977
fmt = '14.7g';
72956
72978
break;
72957
- case 'last': fmt = this.lastformat; break;
72958
72979
}
72959
72980
72960
- const res = floatToString(value, fmt || '6.4g', true);
72961
-
72962
- this.lastformat = res[1];
72963
-
72964
- return res[0];
72981
+ return floatToString(value, fmt || '6.4g');
72965
72982
}
72966
72983
72967
72984
/** @summary Draw TLegend object */
@@ -73607,7 +73624,6 @@ class TPavePainter extends ObjectPainter {
73607
73624
return `.${tv.length-id-1}f`;
73608
73625
}
73609
73626
73610
-
73611
73627
/** @summary Fill function parameters */
73612
73628
fillFunctionStat(f1, dofit, ndim = 1) {
73613
73629
this._has_fit = false;
@@ -147427,7 +147443,6 @@ async function drawText$1() {
147427
147443
147428
147444
if ((text._typename === clTLatex) || annot) {
147429
147445
arg.latex = 1;
147430
- fact = 0.9;
147431
147446
} else if (text._typename === clTMathText) {
147432
147447
arg.latex = 2;
147433
147448
fact = 0.8;
@@ -155987,8 +156002,8 @@ class TGaxisPainter extends TAxisPainter {
155987
156002
});
155988
156003
}
155989
156004
155990
- /** @summary Fill TGaxis context */
155991
- fillContextMenu (menu) {
156005
+ /** @summary Fill TGaxis context menu items */
156006
+ fillContextMenuItems (menu) {
155992
156007
menu.addTAxisMenu(EAxisBits, this, this.getObject(), '');
155993
156008
}
155994
156009
@@ -157232,11 +157247,12 @@ class RAxisPainter extends RObjectPainter {
157232
157247
const gr_range = Math.abs(this.func.range()[1] - this.func.range()[0]);
157233
157248
157234
157249
// avoid black filling by middle-size
157235
- if ((handle.middle.length <= handle.major.length) || (handle.middle.length > gr_range/3.5 ))
157250
+ if ((handle.middle.length <= handle.major.length) || (handle.middle.length > gr_range))
157236
157251
handle.minor = handle.middle = handle.major;
157237
157252
else if ((this.nticks3 > 1) && !this.log) {
157238
157253
handle.minor = this.produceTicks(handle.middle.length, this.nticks3);
157239
- if ((handle.minor.length <= handle.middle.length) || (handle.minor.length > gr_range/1.7)) handle.minor = handle.middle;
157254
+ if ((handle.minor.length <= handle.middle.length) || (handle.minor.length > gr_range))
157255
+ handle.minor = handle.middle;
157240
157256
}
157241
157257
}
157242
157258
@@ -160455,7 +160471,7 @@ class RPadPainter extends RObjectPainter {
160455
160471
160456
160472
const mainid = this.selectDom().attr('id');
160457
160473
160458
- if (!this.isBatchMode() && !this.use_openui && !this.brlayout && mainid && isStr(mainid)) {
160474
+ if (!this.isBatchMode() && !this.use_openui && !this.brlayout && mainid && isStr(mainid) && !getHPainter() ) {
160459
160475
this.brlayout = new BrowserLayout(mainid, null, this);
160460
160476
this.brlayout.create(mainid, true);
160461
160477
this.setDom(this.brlayout.drawing_divid()); // need to create canvas
@@ -162602,25 +162618,6 @@ class RHistStatsPainter extends RPavePainter {
162602
162618
return (this.stats_lines !== undefined);
162603
162619
}
162604
162620
162605
- /** @summary format float value as string
162606
- * @private */
162607
- format(value, fmt) {
162608
- if (!fmt) fmt = 'stat';
162609
-
162610
- switch (fmt) {
162611
- case 'stat' : fmt = gStyle.fStatFormat; break;
162612
- case 'fit': fmt = gStyle.fFitFormat; break;
162613
- case 'entries': if ((Math.abs(value) < 1e9) && (Math.round(value) === value)) return value.toFixed(0); fmt = '14.7g'; break;
162614
- case 'last': fmt = this.lastformat; break;
162615
- }
162616
-
162617
- const res = floatToString(value, fmt || '6.4g', true);
162618
-
162619
- this.lastformat = res[1];
162620
-
162621
- return res[0];
162622
- }
162623
-
162624
162621
/** @summary Draw content */
162625
162622
async drawContent() {
162626
162623
if (this.fillStatistic())
0 commit comments