-----Original Message-----
From: Mark
Sent: Thursday, May 01, 2003 6:32 AM
To: [email protected]
Subject: [eSignal] PS_DASH doesn't work
Would anyone know why drawLineAbsolute ( ..., ..., ..., ..., PS_DASH, ... ) does not created a DASHED line. Every line comes out solid no matter what I choose? Is this a bug?
Thanks
Mark
From: Mark
Sent: Thursday, May 01, 2003 6:32 AM
To: [email protected]
Subject: [eSignal] PS_DASH doesn't work
Would anyone know why drawLineAbsolute ( ..., ..., ..., ..., PS_DASH, ... ) does not created a DASHED line. Every line comes out solid no matter what I choose? Is this a bug?
Thanks
Mark
With a thickness of 1 on a dotted or dashed line, it is pretty hard to tell it is that type of line. I would suggest bumping up the thickness to make it more noticeable. For example,
PHP Code:
for (x=0; x<10; x++) {
drawLineAbsolute( -x, 55.0, -x, 95.0, PS_DASH, 3, Color.blue, x);
}