I don't think you can change the line thickness.  I fake it however with a 
homebuilt function:
Maybe this will help?
function Drawthickline(Startpoint, DrawColor)

{

Offset = 0.01;

if (ST == "ER")

{Offset = .001;}

if (ST == "YM")

{Offset = .3;}

if (ST == "EU" OR ST == "FG" OR ST == "AU" OR ST == "GB")

{Offset = .000001;}

Plot(Startpoint, "", DrawColor, 5);

Plot(Startpoint+Offset, "", DrawColor, 5+4096);

Plot(Startpoint+Offset, "", DrawColor, 5+4096);

Plot(Startpoint+Offset, "", DrawColor, 5+4096);

Plot(Startpoint+Offset, "", DrawColor, 5+4096);

}

----- Original Message ----- 
From: "Bruce Hawkins" <[EMAIL PROTECTED]>
To: <[email protected]>
Sent: Thursday, November 30, 2006 3:43 PM
Subject: [amibroker] Line thickness


> Plot( StochD( 35 , 10 , 1 ), "StochD - 3",
> colorBlack,styleNoLabel,styleThick);
>
> In the above, how can I increase the thickness of the line?
>
> thanks
>
>
> Please note that this group is for discussion between users only.
>
> To get support from AmiBroker please send an e-mail directly to
> SUPPORT {at} amibroker.com
>
> For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
> http://www.amibroker.com/devlog/
>
> For other support material please check also:
> http://www.amibroker.com/support.html
>
> Yahoo! Groups Links
>
>
>

Reply via email to