-
Notifications
You must be signed in to change notification settings - Fork 979
Overlay on top of HeatMap #222
Copy link
Copy link
Closed
Description
Hi,
Is it possible to create filled rectangles on top of HeatMapSeries in oxyplot? I'm able to put ScatterSeries on top, but I'm struggling with rectangles.
What I want to accomplish is to make it look like this, preferably filled with transparent pattern lines or a Bitmap: http://bildr.no/image/OS9RM3BT.jpeg
WPF series:
<oxy:PlotView.Series>
<oxy:HeatMapSeries Data="{Binding HeatMap}"/>
<oxy:ScatterSeries ItemsSource="{Binding Scatter}"/>
</oxy:PlotView.Series>C# properties:
public double[,] HeatMap { get; private set; }
public IList<ScatterPoint> Scatter { get; private set; }Regards,
Jostein
Reactions are currently unavailable
