使用 OxyPlot 散点图自定义颜色范围

Custom Color Range with OxyPlot ScatterPlot

我一直在尝试在我的线系列之上使用 oxyplot 实现散点图。基本上,我喜欢在我的散点图中对一些点进行颜色编码。

我已经用散点图和线系列创建了下图:

以上点颜色是按照教程here创建的。基本上,我添加了一个 RangeColorAxis。此图中的 X 轴范围从 0 到 1 并创建颜色,如下所示:

        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,我想从浅绿色过渡到深绿色。等等。

是否可以在 Oxyplot 中执行此操作?谢谢

使用LinearColorAxis:

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

编辑:您还可以定义自己的调色板:

axis1.Palette.Colors.Clear();

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