I have a dynamic plotting module within my database. I use it to plot sales versus state for each month. The trouble is the limited color choices.
Currently my code is
dim lngColor as long
dim j as integer
I start j at zero and increment by 10 for each loop (state). I am limited to values less then 255 by the RGB color chart. (We currently only have sales in less then 25 states)
I set lngColor = RGB(j, 128, 255-j), which returns a long value for the line method, which I then use to create my chart. The trouble is that I am looking for a 'broader' color spectrum.
Does anybody know how I can achieve a broader color spectrum?
Thanks in advance
Busmgr
Currently my code is
dim lngColor as long
dim j as integer
I start j at zero and increment by 10 for each loop (state). I am limited to values less then 255 by the RGB color chart. (We currently only have sales in less then 25 states)
I set lngColor = RGB(j, 128, 255-j), which returns a long value for the line method, which I then use to create my chart. The trouble is that I am looking for a 'broader' color spectrum.
Does anybody know how I can achieve a broader color spectrum?
Thanks in advance
Busmgr