示例#1
0
        public void Add(double x, double y, string text, Color markerColor)
        {
            TLabel tlabel = new TLabel(text, x, y, markerColor);

            tlabel.Style = this.markerStyle;
            tlabel.Size  = this.markerSize;
            this.points.Add((object)tlabel);
            this.UX36ku1gb(x, y);
        }
示例#2
0
        public void Add(double X, double Y, string Text, Color markerColor, Color textColor)
        {
            TLabel tlabel = new TLabel(Text, X, Y, markerColor, textColor);

            tlabel.Style = this.markerStyle;
            tlabel.Size  = this.markerSize;
            this.points.Add((object)tlabel);
            this.UX36ku1gb(X, Y);
        }
示例#3
0
        public void Add(double X, double Y, string text)
        {
            TLabel tlabel = new TLabel(text, X, Y);

            tlabel.Style = this.markerStyle;
            tlabel.Size  = this.markerSize;
            tlabel.Color = this.markerColor;
            this.points.Add((object)tlabel);
            this.UX36ku1gb(X, Y);
        }
示例#4
0
 public void Add(TLabel label)
 {
     this.points.Add((object)label);
     this.UX36ku1gb(label.X, label.Y);
 }
示例#5
0
文件: Graph.cs 项目: heber/FreeOQ
		public void Add(TLabel label)
		{
			this.points.Add((object)label);
			this.UX36ku1gb(label.X, label.Y);
		}
示例#6
0
文件: Graph.cs 项目: heber/FreeOQ
		public void Add(double X, double Y, string Text, Color markerColor, Color textColor)
		{
			TLabel tlabel = new TLabel(Text, X, Y, markerColor, textColor);
			tlabel.Style = this.markerStyle;
			tlabel.Size = this.markerSize;
			this.points.Add((object)tlabel);
			this.UX36ku1gb(X, Y);
		}
示例#7
0
文件: Graph.cs 项目: heber/FreeOQ
		public void Add(double x, double y, string text, Color markerColor)
		{
			TLabel tlabel = new TLabel(text, x, y, markerColor);
			tlabel.Style = this.markerStyle;
			tlabel.Size = this.markerSize;
			this.points.Add((object)tlabel);
			this.UX36ku1gb(x, y);
		}
示例#8
0
文件: Graph.cs 项目: heber/FreeOQ
		public void Add(double X, double Y, string text)
		{
			TLabel tlabel = new TLabel(text, X, Y);
			tlabel.Style = this.markerStyle;
			tlabel.Size = this.markerSize;
			tlabel.Color = this.markerColor;
			this.points.Add((object)tlabel);
			this.UX36ku1gb(X, Y);
		}