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); }
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); }
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); }
public void Add(TLabel label) { this.points.Add((object)label); this.UX36ku1gb(label.X, label.Y); }