Ejemplo n.º 1
0
 public GraphPoint(Point pt, GraphItem item)
 {
     Visible         = true;
     this.Location   = pt - offset;
     label           = new Label();
     label.Text      = item.ToString();
     label.Visible   = false;
     label.Width     = 50;
     label.ForeColor = Color.Blue;
     label.Location  = this.Location + offset;
 }
Ejemplo n.º 2
0
 public GraphPoint(Point pt, GraphItem item)
 {
     Visible         = true;
     this.Location   = pt - offset;
     label           = new Label();
     label.Text      = item.ToString();
     label.Visible   = false;
     label.Width     = 50;
     label.ForeColor = Color.Blue;
     label.Location  = this.Location + new Size(offset.Width + radius + 3, offset.Height - label.Height / 2);
 }
Ejemplo n.º 3
0
	public GraphPoint(Point pt, GraphItem item)
	{
		Visible=true;
		this.Location=pt-offset;
		label=new Label();
		label.Text=item.ToString();
		label.Visible=false;
		label.Width=50;
		label.ForeColor=Color.Blue;
		label.Location=this.Location+new Size(offset.Width + radius + 3, offset.Height - label.Height/2);
	}
Ejemplo n.º 4
0
	public GraphPoint(Point pt, GraphItem item)
	{
		Visible=true;
		this.Location=pt-offset;
		label=new Label();
		label.Text=item.ToString();
		label.Visible=false;
		label.Width=50;
		label.ForeColor=Color.Blue;
		label.Location=this.Location+offset;
	}