TMarksItem

TMarksItem
Hierarchy     Properties     Methods     

Unit
TeEngine

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

// Customize mark...
with Series1.Marks[3] do
begin
Font.Size:=14;
Color:=clSilver;
end;

// 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;