Do you know how to highlight a specified point in a graph?
Is it also possible to show a label for this specified point?
Any ideas?
You can create a marker to display at the certain point you would like to accentuate! First, instantiate any type of an ElementPointMarker. You can perhaps set a tooltip(for your label?) like :
elementPointMarker.ToolTip = "I am a label!";
Set up the rest of it and add it to your graph with:
plotter.Children.Add(elementPointMarker);
If you want to add an actual label instead of a tooltip, you could examine two things.