I've replaced all the that
{$IFNDEF NOUSE_BDE}
for {$IFNDEF NOTEEDB}
in this unit.
Code: Select all
TQRDBChart=class({$IFNDEF NOTEEDB}TCustomDBChart{$ELSE}TCustomChart{$ENDIF})
{$IFNDEF NOUSE_BDE}
for {$IFNDEF NOTEEDB}
in this unit.
Code: Select all
TQRDBChart=class({$IFNDEF NOTEEDB}TCustomDBChart{$ELSE}TCustomChart{$ENDIF})
LinePen.Color
, which is ok for the lines connecting the 3d points, but you should set the main series' Color
.Chart1.Draw
isn't enough with this kind of series because this series min and max doesn't correspond to the y values min and max. It needs Series1.RecalcStats
to be called instead.I've reproduced it so I've added it to the public tracker:
Take a look at the discussion and code here.