Colors

TeeChart for ActiveX, COM and ASP
Post Reply
Hermes
Newbie
Newbie
Posts: 54
Joined: Tue Feb 04, 2003 5:00 am
Location: Montevideo, Uruguay

Colors

Post by Hermes » Fri Jan 11, 2008 1:26 pm

Hi, I need to manually set the point color of my series. How can I get the list of colors that automatically are asigned when use the clTeeColor constant? Or can I get this list one by one in a get next style?

thank you

Pep
Site Admin
Site Admin
Posts: 3278
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Post by Pep » Mon Jan 14, 2008 10:07 am

Hi Hermes,

you can assign a specific color to the point Series using :
TChart1.Series(0).PointColor(1) = vbBlue

or get the used color by using :
xcolor = TChart1.Series(0).PointColor(1)

Post Reply