Page 1 of 1

Labelling a point

Posted: Thu Sep 23, 2010 4:43 pm
by Godspower Njoku
How do I label a point on dplot?

Posted: Thu Sep 23, 2010 6:18 pm
by DPlotAdmin
Since you posted this in the Excel forum, I assume you mean from Excel. There's no good way to do that unless you want to write your own VBA routine that calls the DPlot_Command function in dplotlib.xla. If that's what you want to do, it is easy enough:

doc = DPlotGetActiveDocument()
If doc > 0 Then
ret = DPlot_Command(doc, "[TextPointLabel(<textpointlabel parameters: see Help file>)]")
Call DPlot_Finish(doc)
End If