The "current marker" problem

The following piece of code doesn’t work …

gStyle->SetMarkerStyle(21); MyNtuple->Draw("v1:v2", "", "P") // the "current marker" is NOT used

Yes … you must set the Marker type to the object directly

Thanks, this works fine:MyNtuple->SetMarkerStyle(20); MyNtuple->SetMarkerSize(0.3); MyNtuple->Draw("v1:v2", "", "P")