Hi Felas !
I just need to show to my team the NetDiagram as solution for our needs....
So, basicly...I need to proof that the NetDiagram can generate diagrams based on commands in run time.I'm sure it's possible...but I Can't do it

Can someone tell me what's wrong ? I just wanna create 2 boxes and a arrow pointing 1 box to another..

fc.BoxBrush = new MindFusion.Drawing.LinearGradientBrush(Color.ForestGreen, Color.White, 30);
fc.DefaultShape = ShapeTemplate.FromId("Rectangle");
Box marketing = fc.CreateBox(40, 5, 25, 16);
marketing.Text = "Marketing";
marketing.Expanded = false;
Box rede_entra = fc.CreateBox(5, 35, 25, 16);
rede_entra.Text = "Rede entra em contato com a VW";
rede_entra.Expanded = false;
Box vw_entra = fc.CreateBox(65, 35, 25, 16);
marketing.AttachTo(rede_entra, AttachToNode.BottomRight);
________________________________
Need#2 : Usually we develop diagrams and we need to print a very huge map using a plotter....Is it possible ? how to enable on the applet the print function ? Any such way to define also the print size ?
ty !