Oxyplot:HeatMapSeries顶部的矩形

时间:2014-10-21 14:14:57

标签: c# wpf oxyplot

是否可以在oxymap中的HeatMapSeries顶部创建填充矩形?我能够将ScatterSeries放在首位,但我正在努力处理矩形。

我想要完成的是让它看起来像这样,最好用透明图案线或Bitmap填充:

enter image description here

WPF,系列部分:

<oxy:PlotView.Series>
    <oxy:HeatMapSeries Data="{Binding HeatMap}"/>
    <oxy:ScatterSeries ItemsSource="{Binding Scatter}"/>
</oxy:PlotView.Series>

C#,属性部分:

public double[,] HeatMap { get; private set; }
public IList<ScatterPoint> Scatter { get; private set; }

此致 乔斯坦

1 个答案:

答案 0 :(得分:1)

使用添加到PlotModel.Annotations的四个RectangleAnnotations解决。