Skip to content

Commit af4d07d

Browse files
Add treemap
1 parent b87720b commit af4d07d

File tree

4 files changed

+498
-1
lines changed

4 files changed

+498
-1
lines changed

modules/draw.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,8 @@ drawFuncs = { lst: [
162162
{ name: nsREX+'RPaveText', icon: 'img_pavetext', class: () => import_v7('pave').then(h => h.RPaveTextPainter), opt: '' },
163163
{ name: nsREX+'RFrame', icon: 'img_frame', draw: () => import_v7().then(h => h.drawRFrame), opt: '' },
164164
{ name: nsREX+'RFont', icon: 'img_text', draw: () => import_v7().then(h => h.drawRFont), opt: '', direct: 'v7', csstype: 'font' },
165-
{ name: nsREX+'RAxisDrawable', icon: 'img_frame', draw: () => import_v7().then(h => h.drawRAxis), opt: '' }
165+
{ name: nsREX+'RAxisDrawable', icon: 'img_frame', draw: () => import_v7().then(h => h.drawRAxis), opt: '' },
166+
{ name :nsREX+'RTreeMapPainter', class: () => import('./treemap/RTreeMapPainter.mjs').then(h => h.RTreeMapPainter), opt:'' }
166167
], cache: {} };
167168

168169

modules/main.mjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ export * from './hist/TH3Painter.mjs';
2323

2424
export * from './hist/TGraphPainter.mjs';
2525

26+
export * from './treemap/RTreeMapPainter.mjs';
27+
2628
export { geoCfg } from './geom/geobase.mjs';
2729

2830
export { createGeoPainter, TGeoPainter } from './geom/TGeoPainter.mjs';

0 commit comments

Comments
 (0)