我使用 James McCaffrey 提供的教程生成了一个图表:http: //msdn.microsoft.com/en-us/magazine/ff714591.aspx
我能够成功地做到这一点。我还添加了一个工具提示,如下所示:
plotter.AddLineGraph(compositeDataSource1,
new Pen(Brushes.Blue, 2),
new CircleElementPointMarker{ Size = 10.0, Fill = Brushes.Red ,Tooltip="Coordinates"},
new PenDescription("Number bugs open"));
我的问题是:如何在工具提示中显示点的坐标。?