Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/02/16 17:35:05 (7 years ago)
Author:
gkronber
Message:

#2650: merged r14422:14443 from trunk to branches resolving conflicts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/symbreg-factors-2650/HeuristicLab.Analysis.Views/3.3/DataRowVisualPropertiesControl.cs

    r14185 r14449  
    9494          binsExactRadioButton.Checked = Content.ExactBins;
    9595          displayNameTextBox.Text = Content.DisplayName;
     96          isVisibleInLegendCheckBox.Checked = Content.IsVisibleInLegend;
    9697        }
    9798      } finally { SuppressEvents = false; }
     
    103104      lineChartGroupBox.Enabled = Content != null && Content.ChartType == DataRowVisualProperties.DataRowChartType.Line;
    104105      histoGramGroupBox.Enabled = Content != null && Content.ChartType == DataRowVisualProperties.DataRowChartType.Histogram;
     106      isVisibleInLegendCheckBox.Enabled = Content != null;
    105107    }
    106108
     
    188190      }
    189191    }
     192
     193    private void isVisibleInLegendCheckBox_CheckedChanged(object sender, EventArgs e) {
     194      if (!SuppressEvents && Content != null) {
     195        Content.IsVisibleInLegend = isVisibleInLegendCheckBox.Checked;
     196      }
     197    }
    190198    #endregion
    191199  }
Note: See TracChangeset for help on using the changeset viewer.