oxyplotでHeatMapSeriesの上に塗りつぶされた長方形を作成することは可能ですか? ScatterSeries を上に置くことはできますが、四角形に苦労しています。
私が達成したいのは、できれば透明なパターン線またはビットマップで塗りつぶした、次のようにすることです。
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; }
よろしく、 ジョステイン