Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multi color Marker for same LineSeries - OxyPlot

Tags:

c#

oxyplot

Is it possible to have a different marker style for ranges among (XY-Axis) values ? For example. The marker style is shown in steel blue color here, Can I have markers above 15 and below 13 to show another color ?

Display:

enter image description here

like image 876
Rene Duchamp Avatar asked Jul 23 '15 23:07

Rene Duchamp


1 Answers

Oxyplot has both a TwoColorLineSeries and a ThreeColorLineSeries

Here is an example with the ThreeColorLineSeries

public class MainViewModel
{
    public MainViewModel()
    {
        Model = new PlotModel
        {
            Title = "Colouring example"
        };

        var series = new ThreeColorLineSeries();

        // Random data
        var rand = new Random();
        var x = 0;
        while (x < 50)
        {
            series.Points.Add(new DataPoint(x, rand.Next(0, 20)));
            x+=1;
        }

        // Colour limits
        series.LimitHi = 14;
        series.LimitLo = 7;

        // Colours
        series.Color = OxyColor.FromRgb(255,0,0);
        series.ColorHi = OxyColor.FromRgb(0,255,0);
        series.ColorLo = OxyColor.FromRgb(0,0,255);

        Model.Series.Add(series);
    }


    public PlotModel Model { get; set; }
}

ThreeColorLineSeries example with random data

like image 169
Morphed Avatar answered Sep 27 '22 21:09

Morphed