C# OxyPlot:如何在图表上显示点值?

C# OxyPlot: How to display point values on chart?

谁能建议如何在图表上显示点的值?类似的东西。图表:

在您的系列中使用 LabelFormatString 属性。这使您可以指定要显示的内容以及显示方式。

要像屏幕截图中那样仅显示 y 值:

  // Show the y value with 1 decimal place.
  series.LabelFormatString = "{1:F1}";

  // Or if you wanted to show (x, y).
  series.LabelFormatString = "({0:F1}, {1:F1})";