File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 11# JSROOT changelog
22
3+
4+ ## Changes in dev
5+ 1 . Fix - proper paint axis labels on both sides when pad.fTickx/y = 2
6+
7+
38## Changes in 7.10.0
491 . ` RNtuple ` support, thanks to Kriti Mahajan https://github.com/Krmjn09
5102 . Implement ` RTreeMapPainter ` to display ` RNTuple ` structure, thanks to Patryk Pilichowski https://github.com/magnustymoteus
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ const version_id = 'dev',
66
77/** @summary version date
88 * @desc Release date in format day/month/year like '14/04/2022' */
9- version_date = '27 /10/2025' ,
9+ version_date = '28 /10/2025' ,
1010
1111/** @summary version id and date
1212 * @desc Produced by concatenation of {@link version_id} and {@link version_date}
Original file line number Diff line number Diff line change @@ -855,7 +855,7 @@ class THistDrawOptions {
855855 res += '_GRIDX' ;
856856 if ( pad . fGridy )
857857 res += '_GRIDY' ;
858- if ( pad . fTickx == 2 )
858+ if ( pad . fTickx === 2 )
859859 res += '_TICKX2' ;
860860 else if ( pad . fTickx )
861861 res += '_TICKX' ;
You can’t perform that action at this time.
0 commit comments