Changeset 8433
- Timestamp:
- 08/08/12 14:12:23 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Analysis.Views/3.3/ScatterPlotView.cs
r8282 r8433 34 34 [View("ScatterPlot View")] 35 35 [Content(typeof(ScatterPlot), true)] 36 public partial class ScatterPlotView : NamedItemView , IConfigureableView{36 public partial class ScatterPlotView : NamedItemView { 37 37 protected List<Series> invisibleSeries; 38 38 protected Dictionary<IObservableList<Point2D<double>>, ScatterPlotDataRow> pointsRowsTable; … … 111 111 } 112 112 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 }120 113 protected virtual void AddScatterPlotDataRows(IEnumerable<ScatterPlotDataRow> rows) { 121 114 foreach (var row in rows) {
Note: See TracChangeset
for help on using the changeset viewer.