Amibroker background Image

#2
Hi,
Can anyone tell me how i can change the background of amibroker
Either go to Tools - Preferences - Colors or for individual coloring put below lines at top of your code and choose colors in 'Parameters' window of your chart

Code:
SetChartOptions(0,chartShowArrows|chartShowDates);
SetChartBkColor( ParamColor("Color Axes", colorDarkGrey) ); 
SetChartBkGradientFill( ParamColor("BgTop", colorDarkGrey),ParamColor("BgBottom", colorGrey50));
and have a transparent name in my charts....
Use GFX functions
 

SR_TA

Active Member
#8
how do I change the color of the axes? not background color.. so that I can have different background/axes color combinations for different charts
tks for your reply
 
#9
how do I change the color of the axes? not background color.. so that I can have different background/axes color combinations for different charts
tks for your reply
Simply download AFL of #6 and open your eyes when you look at the "Parameters" window. There you will see an option called "Color Axes"
 

Similar threads