Free cookie consent management tool by TermsFeed Policy Generator

Changeset 8433


Ignore:
Timestamp:
08/08/12 14:12:23 (12 years ago)
Author:
abeham
Message:

#1892: Removed IConfigurableView from ScatterPlotView to avoid display of configure button

File:
1 edited

Legend:

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

    r8282 r8433  
    3434  [View("ScatterPlot View")]
    3535  [Content(typeof(ScatterPlot), true)]
    36   public partial class ScatterPlotView : NamedItemView, IConfigureableView {
     36  public partial class ScatterPlotView : NamedItemView {
    3737    protected List<Series> invisibleSeries;
    3838    protected Dictionary<IObservableList<Point2D<double>>, ScatterPlotDataRow> pointsRowsTable;
     
    111111    }
    112112
    113     public void ShowConfiguration() {
    114       //if (Content != null) {
    115       //  using (ScatterPlotVisualPropertiesDialog dialog = new ScatterPlotVisualPropertiesDialog(Content)) {
    116       //    dialog.ShowDialog(this);
    117       //  }
    118       //} else MessageBox.Show("Nothing to configure.");
    119     }
    120113    protected virtual void AddScatterPlotDataRows(IEnumerable<ScatterPlotDataRow> rows) {
    121114      foreach (var row in rows) {
Note: See TracChangeset for help on using the changeset viewer.