Hello
I want to dynamically create a TSimpleGraph with TRectangularNode.
Where I can find some example ?
Thanks
procedure TForm1.SomeProc;
begin
Graph := TSimpleGraph.Create(Form1);
with Graph do begin
Parent := Form1;
Left := 0;
Top := 0;
Width := 400;
Height := 400;
ZoomMax := 1000;
end;
end;
procedure TForm1.SomeOtherProc;
var
r: TRect;
node: TGraphNode;
begin
r := Rect(20, 20, 250, 50);
node := Graph.InsertNode(@r);
node.Text := 'Node text!';
end;
Users browsing this forum: No registered users and 19 guests