I have updated TeeChart from the Version shipped with Delphi 7 to the current. Now I get little white lines between my bars. See Attachments. How can I remove them to have the old look again.
If I set AreaLinesPen.Visible := true the white lines disappear but all bars are a bit to large.
Here the code the create the series
Code: Select all
Serie:=TAreaSeries.Create(DisChart);
with Serie as TAreaSeries do
begin
LinePen.Visible:=false;
BorderWidth:=0;
AreaLinesPen.Visible:=false;
AreaLinesPen.Style:=psDot;
AreaLinesPen.Color:=Data.Sets[x].Color;
Title:=Data.Sets[x].Name;
ShowInLegend:=true;
MultiArea:=maStacked;
Stairs:=true;
InvertedStairs:=true;
XValues.DateTime:=true;
ParentChart:=DisChart;
SeriesColor:=Data.Sets[x].Color;
end;