Standard marker style for TTree::Draw via gStyle?

Hi,

is there a way to set the default marker size and style used in 2-dim TTree::Draw? I tried it e.g. via

gStyle->SetMarkerStyle(20);
gStyle->SetMarkerSize(0.5);

but this does not seem to have any effect on TTree::Draw, while it has on newly created TGraph.

Best,
Klaus

ROOT Version: v6-24-04
Platform: Linux Debian Buster
Compiler: Not Provided


There is not global setting you should do:

yourtree->SetMarkerStyle(20);
yourtree->Draw("x:y");

Ok, thanks.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.