Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/05/15 10:22:03 (9 years ago)
Author:
gkronber
Message:

#2351 added kernel density calculation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Analysis.Views/3.3/HistogramControl.cs

    r12012 r12134  
    134134
    135135      chart.Series.Clear();
    136 
    137136      foreach (var point in points) {
    138137        if (!point.Value.Any()) continue;
     
    172171
    173172      ChartArea chartArea = chart.ChartAreas[0];
     173      // don't show grid lines for second y-axis
     174      chartArea.AxisY2.MajorGrid.Enabled = false;
     175      chartArea.AxisY2.MinorGrid.Enabled = false;
    174176      chartArea.AxisY.Title = "Frequency";
    175177
     
    200202      }
    201203
     204      // densities should be plotted on the second axis (different scale)
     205      newSeries.YAxisType = AxisType.Secondary;
    202206      chart.Series.Add(newSeries);
    203207    }
Note: See TracChangeset for help on using the changeset viewer.