我可以在 LineSeries 图表上绘制垂直线吗?
Can I draw vertical lines on the LineSeries Graph?
我正在用一些 OxyPlot 图表制作一个应用程序。
我想制作一个在 LineSeries 图表上有一条垂直线的图表,如下所示 link:
http://theclosetentrepreneur.com/how-to-add-a-vertical-line-to-an-excel-xy-chart
(我的理想形象在"Tips on formatting your chart…"。)
如何制作这张图表?
您可以为此目的使用 LineAnnotation。例如,
var annotation = new LineAnnotation();
annotation.Color = OxyColors.Blue;
annotation.MinimumY = 10;
annotation.MaximumY = 40;
annotation.X = 5;
annotation.LineStyle = LineStyle.Solid;
annotation.Type = LineAnnotationType.Vertical;
MyPlotModel.Annotations.Add(annotation);
示例输出
我正在用一些 OxyPlot 图表制作一个应用程序。
我想制作一个在 LineSeries 图表上有一条垂直线的图表,如下所示 link:
http://theclosetentrepreneur.com/how-to-add-a-vertical-line-to-an-excel-xy-chart
(我的理想形象在"Tips on formatting your chart…"。)
如何制作这张图表?
您可以为此目的使用 LineAnnotation。例如,
var annotation = new LineAnnotation();
annotation.Color = OxyColors.Blue;
annotation.MinimumY = 10;
annotation.MaximumY = 40;
annotation.X = 5;
annotation.LineStyle = LineStyle.Solid;
annotation.Type = LineAnnotationType.Vertical;
MyPlotModel.Annotations.Add(annotation);
示例输出