Can i display datapoints(database values) in labels when a vertical guide line is moved along the graph with reference to TextItem class or is there any alternative way to do this.
In the text item class to display text:
PointD pd=new PointD(x,y);
TextItem ti=new TextItem(pd,"Welcome");
ti.TextColor=Color.Red;
ps_.Add(ti);
(using the above code not able to display anything on the graph)
I am using NPlot-0.9.10.0
email address: bskvarmaa@yahoo.com
Thanks,
Varma
Logged In: YES
user_id=613279
Originator: NO
Have you tried refreshing the plotsurface after adding the point label?
i.e.
ps_.Refresh();
If this does not work please email me your code and I'll take a look.