Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/04/12 09:50:52 (12 years ago)
Author:
gkronber
Message:

#1902 implemented LinearARD and MaternIso covariance functions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis.Views/3.4/GaussianProcessRegressionSolutionLineChartView.cs

    r8484 r8562  
    114114
    115115        this.ToggleSeriesData(this.chart.Series[ESTIMATEDVALUES_ALL_SERIES_NAME]);
     116
     117        // the series have been added in different order than in the normal line chart
     118        // --> adapt coloring;
     119        var s1Color = chart.Series[0].Color;
     120        var s2Color = chart.Series[1].Color;
     121        var s3Color = chart.Series[2].Color;
     122        var s4Color = chart.Series[3].Color;
     123
     124        chart.Series[3].Color = s1Color;
     125        chart.Series[0].Color = s2Color;
     126        chart.Series[1].Color = s3Color;
     127        chart.Series[2].Color = s4Color;
    116128
    117129        UpdateCursorInterval();
Note: See TracChangeset for help on using the changeset viewer.