Also der
OI Ignoriert da gar nix, Du musst ihm schon mitteilen, das er machen soll ^^
Und Default Werte im Konstruktor initialisieren.
Das sich da nix rührt ist kein Wunder...
property GridColor : TColor read FGridColor write FGridColor default $0000FF00;
Du musst ihm schon sagen, was er machen soll
Delphi-Quellcode:
FGridColor:TColor;
...
procedure SetGridColor(Value:TColor);
...
property GridColor : TColor read FGridColor write SetGridColor default $0000FF00;
...
procedure TGraph.SetGraphColor(Value:TColor);
begin
FGraphColor:=Value; // Neuen Wert zuweisen
...
If Visible then Paint; // Updaten
end;
...
constructor TGraph.Create(AOwner: TComponent);
...
FGridColor:=$0000FF00; // Einstellen des Default Wertes
...
Edit: Wo ist denn das Attachment abgeblieben?