ISeries.Color
ISeries

property Color: OLE_COLOR;

Type Library
TeeChartx

Description
Default color is clTeeColor.

The Series Color property is the default color in which the Series points will be drawn on. This property value could be any valid Visual Basic, Delphi or Windows color. If you add points with clTeeColor color, then they will be drawn with the 'Color' colour. This property is the default Color associated to the Series.

When you place a new Series class in a Chart, TeeChart will assign a free color to this property (a Color that no other Series in the same Chart use). Some Series have the ColorEachPoint boolean property. Setting this to TRUE will force the Series to paint each point with a different color, thus without using its Series.Color

Series.Color is also used to paint the small rectangle in Legend.

Example [Visual Basic]:

TChart1.Series(3).Color = vbBlue

TChart1.Series(1).Color = vbYellow