cwhistler Report post Posted April 25, 2012 (edited) I would like to completely remove the alternate row coloring in the SSGrid component. I have tried setting several configuration options. If I set the alternateRowBgColor to white then this just makes the alternate rows a darker shade of grey. var invgrid = new FusionCharts("SSGrid.swf"/>", "gridID", "100%", "100%", "0", "1"); invgrid.setDataURL("/gridData"); invgrid.configure("bgColor", "white"); invgrid.configure("alternateRowBgColor", "white"); invgrid.render("grid"); I tried adding invgrid.configure("showAlternateHGridColor", "0"); to the list even though it is not listed as an option, but it doesn't help. I've set the alternateRowBgAlpha to either 0 or 100 and it makes no difference. Any suggestions? Found the issue, have to use FFFFFF instead of white Edited April 25, 2012 by cwhistler Share this post Link to post Share on other sites
Swarnam Report post Posted April 26, 2012 Yes, color code has to be specified in a hex color code format without #. Share this post Link to post Share on other sites