IMarksItem
Hierarchy Properties Methods

Type Library
TeeChartx

Description
Interface with formatting properties to use to draw a single series mark.

' Customize mark...

with TChart1.Series(0).Marks(3)

.Font.Size=14

.Color=vbBlue

end with

// Customize another mark...

with Series1.Marks[5] do

begin

Font.Size:=12;

Font.Color:=clWhite;

Color:=clNavy;

ShapeStyle:=fosRoundRectangle;

Shadow.Size:=4;

Shadow.Transparency:=60;

Shadow.Color:=clDkGray;

end;