2017-05-26 64 views
2

私はラインプロットの上にオキシプロットを使った散布図を実験しています。基本的には、私の散布図にいくつかの点を色分けしたいと思います。OxyPlot ScatterPlotのカスタムカラーレンジ

Iはすでに散布図および線シリーズで作成された以下のグラフを持っている:

enter image description here

上記ポイント色がチュートリアルhere以下に作成されます。基本的に、RangeColorAxisを追加しました。 0から1までこのグラフの範囲からX軸と色を作成するには、以下のように:今

 var customAxis = new RangeColorAxis { Key = "customColors" }; 
     customAxis.AddRange(0, 0.1, OxyColors.Red); 
     customAxis.AddRange(0.1, 0.2, OxyColors.Yellow); 
     customAxis.AddRange(0.2, 0.3, OxyColors.Green); 
     customAxis.AddRange(0.3, 1, OxyColors.Orange); 
     customAxis.AddRange(1, 1.1, OxyColors.Blue); 
     OxyPlotModel.Axes.Add(customAxis); 

しかし、私はまた、上のグラフでは、いくつかの色の進行を追加したいと思います。たとえば、0.0から0.1のポイントから、LightRedからDarkRedに色を進めたいと思います。 0.1から0.2まで、ライトイエローからブライトイエローに移行したいと思います。 0.2から0.3まで、Light GreenからDark Greenに移行したいと思います。等々。

これはOxyplotで可能ですか?おかげ

答えて

2

使用LinearColorAxis

enter image description here

public partial class MainWindow : Window 
{ 
    public PlotModel Model { get; set; } 

    public MainWindow() 
    { 
     InitializeComponent(); 

     Model = new PlotModel(); 

     var axis1 = new LinearColorAxis(); 
     axis1.Key = "ColorAxis"; 
     axis1.Maximum = 2 * Math.PI; 
     axis1.Minimum = 0; 
     axis1.Position = AxisPosition.Top; 
     Model.Axes.Add(axis1); 

     var s1 = new ScatterSeries(); 
     s1.ColorAxisKey = "ColorAxis"; 
     s1.MarkerSize = 8; 
     s1.MarkerType = MarkerType.Circle; 

     for (double x = 0; x <= 2 * Math.PI; x += 0.1) 
      s1.Points.Add(new ScatterPoint(x, Math.Sin(x), double.NaN, x)); 

     Model.Series.Add(s1); 

     DataContext = this; 
    } 
} 

EDIT:あなたはまた、独自のパレットを定義することができます。

enter image description here

axis1.Palette.Colors.Clear(); 

for (int i = 0; i < 256; i++) 
    axis1.Palette.Colors.Add(OxyColor.FromArgb((byte)i, 255, 0, 0)); 
+0

こんにちはjstreetでは、LinearColorAxisの値の範囲をどの色にするかを指定することは可能ですか?あなたの例では、それは0から2 * PIの間で青から赤までずっと移行しています。明かりから闇への移行だけをしたい場合はどうすればいいですか?0から2までの赤* PI – Mantracker

+0

私の** EDIT **をご覧ください。 – jsanalytics

関連する問題