I don't think that there is a way to just show it all the time with out making one yourself.
Two ways I could think to do it:
// Create a variable text at a variable position.
var s = board.create('slider',[[0,4],[3,4],[-2,0,2]]);
var graph = board.create('text',
[function(x){ return s.Value();}, 1,
function(){return "The value of s is"+s.Value().toFixed(2);}
]
);
But then make it dependent on the point not a slider. you don't even have to have the text follow the point if you don't want to
OR
set the name to a function and which will show up in the label - i think you can do that.
but either way if you have the text or label follow the point you might want to turn of off the other coordinates that pop up ( think you can do that with css - might be an easier/better way.)