public GraphData(GraphRectangle rec, GraphText txt)
 {
     this.DataRectangle = rec;
     this.DataText      = txt;
 }
        public GraphNode(GraphCircle circle, GraphText txt)
        {
            this.NodeCircle = circle;

            this.NodeText = txt;
        }