I definitely wouldn't entrust the colors of my charts to a random RGB generator. I recommend you follow Elijah's solution and build a large, static array of colors in javascript. An array large enough to handle the maximum number of data sets (columns) you expect.
var colorList = ["ee0000","00ee00","0000ee","cccccc","336699",...]; Good luck, K --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Chart API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-chart-api?hl=en -~----------~----~----~----~------~----~------~--~---
