OxyPlot:如何向图表添加文本?

OxyPlot: How can I add text to a graph?

我正在使用 OxyPlot.Xamarin.Android 绘制不规则多边形 (LineSeries),我还想在它的长度附近添加一条线。可以在图表中添加文本吗?我还希望放大或缩小以像在线一样处理文本。 谢谢。

It is possible to add a text in a graph?

您可以尝试使用 TextAnnotation
例如:

        var plotModel = new PlotModel { Title = "OxyPlot Demo" };

        ///Other code...
        ///...
        ///...
        ///...

        var textAnnotation = new TextAnnotation
        {
            Text = "Text1",
            TextPosition = new DataPoint(1.0, 2.0)
        };
        plotModel.Annotations.Add(textAnnotation);