Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/02/16 13:43:34 (7 years ago)
Author:
pfleck
Message:

#2709 Copied plugins.

Location:
branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing/3.4/Content/ScatterPlotContent.cs

    r14185 r14441  
    6969
    7070        ScatterPlotDataRow scdr = new ScatterPlotDataRow(variableNameX + " - " + variableNameY, "", points);
     71        scdr.VisualProperties.IsVisibleInLegend = false;
    7172        scatterPlot.Rows.Add(scdr);
    7273
     
    8384            "",
    8485            values.Select(v => new Point2D<double>(v.x, v.y)),
    85             new ScatterPlotDataRowVisualProperties() { Color = gradients[curGradient] });
     86            new ScatterPlotDataRowVisualProperties() { Color = gradients[curGradient], });
    8687          curGradient += gradients.Count / numColors;
    8788          scatterPlot.Rows.Add(row);
Note: See TracChangeset for help on using the changeset viewer.