Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion demo/examples.json
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,8 @@
{ "name": "legend", "url": "nobrowser&file=$$$graph_twopad.root&item=[c1/pad1/[0],c1/pad2/[0],$legend]&opt=[alp,ly+;yaxis_red]", "title": "Display legend for the drawn objects" },
{ "name": "scatter", "file": "scatter.root", "item": "c2", "title": "Canvas with new TScatter class, tutorials/graphs/scatter.C" },
{ "name": "ann3d", "file": "tutorials_graphs.root", "item": "annotation3d_new", "title": "Usage of new TAnnotation class, tutorials/graphs/annotation3d.C" },
{ "name": "marker", "file": "marker_types.root", "item": "c1", "title": "Canvases from TAttMarker documentaion with different types and lines width" }
{ "name": "marker", "file": "marker_types.root", "item": "c1", "title": "Canvases from TAttMarker documentaion with different types and lines width" },
{ "name": "treemap", "file": "treemap.root", "item": "RTreeMapPainter", "title": "Display of RNTuple structure in RBrowser" }
],
"User" : [
{ "name": "div", "url": "nobrowser&inject=../demo/custom/divhist.mjs&file=demo/custom/divhist.root&item=DivHist", "title": "Draw division of two histograms from user class, see demo/custom/ dir for details" },
Expand Down
3 changes: 2 additions & 1 deletion modules/draw.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,8 @@ drawFuncs = { lst: [
{ name: nsREX+'RPaveText', icon: 'img_pavetext', class: () => import_v7('pave').then(h => h.RPaveTextPainter), opt: '' },
{ name: nsREX+'RFrame', icon: 'img_frame', draw: () => import_v7().then(h => h.drawRFrame), opt: '' },
{ name: nsREX+'RFont', icon: 'img_text', draw: () => import_v7().then(h => h.drawRFont), opt: '', direct: 'v7', csstype: 'font' },
{ name: nsREX+'RAxisDrawable', icon: 'img_frame', draw: () => import_v7().then(h => h.drawRAxis), opt: '' }
{ name: nsREX+'RAxisDrawable', icon: 'img_frame', draw: () => import_v7().then(h => h.drawRAxis), opt: '' },
{ name: nsREX+'RTreeMapPainter', class: () => import('./draw/RTreeMapPainter.mjs').then(h => h.RTreeMapPainter), opt: '' }
], cache: {} };


Expand Down
Loading
Loading