I found code on the knowledge base for a chart that normally has a colored 
background (because the plots are white). I want to know if there are commands 
like: "SetChartOptions( 2, chartShowDates );" for setting the color of the Grid 
and Axes of a chart, without altering my default white background with black 
text?

I am aware that the work around would be alter the code from the knowledge 
base, but I'd rather learn something about editing the chart environment.

Below is the code I use presently to setup the chart formatting:

//====================================================================
// Chart Formatting
//====================================================================
GraphXSpace = 5; // Adds % extra space above and below the graph line.
SetChartBkColor( colorBlack );
SetChartOptions( 2, chartShowDates );
SetChartOptions( 2, chartLogarithmic );
//SetChartAxes(colorWhite); // Don't know how to do this!!!
//GridColor = ParamColor( "GridColor", colorLightGrey );
//SetChartGrid(GridColor); // Don't know how to do this!!!

Are the comparable functions to set the Chart Axes and/or grid color?

Any help would be appreciated,
-WILLIAM

Reply via email to