Hi
I would like to make the line of the open marker symbols thicker.
I tried to follow the inheritance tree to see what to set to affect how its drawn and I ended up at
TPostScript.cxx.html#TPostScript:DrawPolyMarker
Where (in the version of root I use v4.00.04) :
void TPostScript::DrawPolyMarker(Int_t n, Float_t *x, Float_t *y)
{
// Draw markers at the n WC points x, y
Int_t i, np, markerstyle;
Float_t markersize;
static char chtemp[10];
Style_t linestylesav = fLineStyle;
Width_t linewidthsav = fLineWidth;
SetLineStyle(1);
SetLineWidth(1);
SetColor(Int_t(fMarkerColor));
markerstyle = abs(fMarkerStyle);
The line width seems to be hard-coded. Is there a way around this in this or any root version?
I may have just missed where to set it.
Thanks
Mark