c# - Oxyplot: Rectangles on top of HeatMapSeries -
c# - Oxyplot: Rectangles on top of HeatMapSeries -
is possible create filled rectangles on top of heatmapseries in oxyplot? i'm able set scatterseries on top, i'm struggling rectangles.
what want accomplish create this, preferably filled transparent pattern lines or bitmap:
wpf, series part:
<oxy:plotview.series> <oxy:heatmapseries data="{binding heatmap}"/> <oxy:scatterseries itemssource="{binding scatter}"/> </oxy:plotview.series>
c#, properties part:
public double[,] heatmap { get; private set; } public ilist<scatterpoint> scatter { get; private set; }
regards, jostein
solved using 4 rectangleannotations added plotmodel.annotations.
c# wpf oxyplot
Comments
Post a Comment