@@ -14,7 +14,7 @@ const version_id = 'dev',
1414
1515/** @summary version date
1616 * @desc Release date in format day/month/year like '14/04/2022' */
17- version_date = '27 /11/2025',
17+ version_date = '28 /11/2025',
1818
1919/** @summary version id and date
2020 * @desc Produced by concatenation of {@link version_id} and {@link version_date}
@@ -79626,6 +79626,9 @@ class JSRootMenu {
7962679626 this.addchk(settings.StripAxisLabels, 'Strip labels', flag => { settings.StripAxisLabels = flag; }, 'Provide shorter labels like 10^0 -> 1');
7962779627 this.addchk(settings.CutAxisLabels, 'Cut labels', flag => { settings.CutAxisLabels = flag; }, 'Remove labels which may exceed graphical range');
7962879628 this.add(`Tilt angle ${settings.AxisTiltAngle}`, () => this.input('Axis tilt angle', settings.AxisTiltAngle, 'int', 0, 180).then(val => { settings.AxisTiltAngle = val; }));
79629+ this.add(`X format ${settings.XValuesFormat ?? gStyle.fStatFormat}`, () => this.input('X axis format', settings.XValuesFormat).then(val => { settings.XValuesFormat = val; }));
79630+ this.add(`Y format ${settings.YValuesFormat ?? gStyle.fStatFormat}`, () => this.input('Y axis format', settings.YValuesFormat).then(val => { settings.YValuesFormat = val; }));
79631+ this.add(`Z format ${settings.ZValuesFormat ?? gStyle.fStatFormat}`, () => this.input('Z axis format', settings.ZValuesFormat).then(val => { settings.ZValuesFormat = val; }));
7962979632 this.endsub();
7963079633 this.addSelectMenu('Latex', ['Off', 'Symbols', 'Normal', 'MathJax', 'Force MathJax'], settings.Latex, value => { settings.Latex = value; });
7963179634 this.addSelectMenu('3D rendering', ['Default', 'WebGL', 'Image'], settings.Render3D, value => { settings.Render3D = value; });
@@ -81552,7 +81555,7 @@ class TAxisPainter extends ObjectPainter {
8155281555
8155381556 if (handle.kind === 1) {
8155481557 // if not showing labels, not show large tick
81555- // FIXME: for labels last tick is smaller,
81558+ // FIXME: for labels last tick is smaller
8155681559 if (!this.isExtraLogTick(handle.tick) && (this.format(handle.tick, true) !== null))
8155781560 h1 = tickSize;
8155881561 this.ticks.push(handle.grpos); // keep graphical positions of major ticks
@@ -167966,7 +167969,7 @@ class HierarchyPainter extends BasePainter {
167966167969 '<label style="margin-right:5px"><input type="checkbox" name="monitoring" class="gui_monitoring"/>Monitoring</label>';
167967167970 } else if (!this.no_select) {
167968167971 const myDiv = select('#' + this.gui_div),
167969- files = myDiv.attr('files') || '.. /files/hsimple.root',
167972+ files = myDiv.attr('files') || 'https://root.cern/js /files/hsimple.root',
167970167973 path = decodeUrl().get('path') || myDiv.attr('path') || '',
167971167974 arrFiles = files.split(';');
167972167975
0 commit comments