Hallo,
evtl. wär dies noch noch eine Alternative.
https://www.swplot.com/wplot.htm
als Beispiel:
Delphi-Quellcode:
myplot := TXplot32.Create(self);
try
myplot.Parent := self;
myplot.Width := self.Width;
myplot.Height := self.Height;
myplot.DynamicalyResize:=true;
myplot.DynamicalyTrim:=true;
myplot.DynamicalyZoom:=True;
myplot.PreferExactTrim := true;
myplot.ProportionalAspectRatio := true;
myplot.ShowInPlaceMenu := true;
myplot.ShowPropertiesDialog := true;
myplot.ShowPopupMenu:=true;
except
if assigned(myplot) then myplot.free;
end;
Ich habe mit der importierten Typbibliothek geararbeitet, da mit dem
ActiveX Control Fehler auftraten.
Kostet ca. 35€
Gruß