2014-10-21 6 views
1

oxyplot에서 HeatMapSeries 위에 채워진 직사각형을 만들 수 있습니까? 나는 ScatterSeries를 맨 위에 놓을 수는 있지만 직사각형으로 고민하고 있습니다.Oxyplot : HeatMapSeries 맨 위에있는 직사각형

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; } 

감사합니다, Jostein

답변

1

PlotModel.Annotations에 추가 된 4 개의 RectangleAnnotations를 사용하여 해결되었습니다.

관련 문제