help me! Ami

trash

Well-Known Member
#11
Look like you referring the price label border width ? I don't think you can do anything on it
Well if you mean line width then you can do it also

Code:
// by trash
SetChartOptions( 0, chartShowArrows | chartShowDates | chartWrapTitle, 0, 0, 0, 0 );
Plot( C, "", colorGrey40, styleBar ); 

Linewidth = Param( "Axes Line Width", 1, 1, 10, 1 );
Linwidth2 = Linewidth/2;
linecolor = ParamColor( "Axes Line Color", colorRed );

pxcr      = Status( "pxchartright" );
x         = pxcr + 1 - Linwidth2;
y         = Status( "pxchartbottom" ) + 1 - Linwidth2;
y_        = Status( "pxheight" );

GfxSelectPen ( linecolor, Linewidth, 0 );
GfxMoveTo( 0, y );
GfxLineTo( pxcr - Linwidth2, y );

GfxMoveTo( x, -1 );
GfxLineTo( x, y_ );
 
Last edited: