Changeset 8907
- Timestamp:
- 11/13/12 13:08:36 (12 years ago)
- Location:
- trunk/sources
- Files:
-
- 6 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Analysis.Views/3.3/HeuristicLab.Analysis.Views-3.3.csproj
r8600 r8907 116 116 </ItemGroup> 117 117 <ItemGroup> 118 <Compile Include="ScatterPlotVisualPropertiesDialog.cs"> 119 <SubType>Form</SubType> 120 </Compile> 121 <Compile Include="ScatterPlotVisualPropertiesDialog.Designer.cs"> 122 <DependentUpon>ScatterPlotVisualPropertiesDialog.cs</DependentUpon> 123 </Compile> 124 <Compile Include="ScatterPlotVisualPropertiesControl.cs"> 125 <SubType>UserControl</SubType> 126 </Compile> 127 <Compile Include="ScatterPlotVisualPropertiesControl.Designer.cs"> 128 <DependentUpon>ScatterPlotVisualPropertiesControl.cs</DependentUpon> 129 </Compile> 130 <Compile Include="ScatterPlotDataRowVisualPropertiesControl.cs"> 131 <SubType>UserControl</SubType> 132 </Compile> 133 <Compile Include="ScatterPlotDataRowVisualPropertiesControl.Designer.cs"> 134 <DependentUpon>ScatterPlotDataRowVisualPropertiesControl.cs</DependentUpon> 135 </Compile> 118 136 <Compile Include="ScatterPlotView.cs"> 119 137 <SubType>UserControl</SubType> … … 284 302 --> 285 303 <PropertyGroup> 286 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)304 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 287 305 set ProjectDir=$(ProjectDir) 288 306 set SolutionDir=$(SolutionDir) … … 291 309 call PreBuildEvent.cmd 292 310 </PreBuildEvent> 293 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">311 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' "> 294 312 export ProjectDir=$(ProjectDir) 295 313 export SolutionDir=$(SolutionDir) -
trunk/sources/HeuristicLab.Analysis.Views/3.3/ScatterPlotView.cs
r8433 r8907 34 34 [View("ScatterPlot View")] 35 35 [Content(typeof(ScatterPlot), true)] 36 public partial class ScatterPlotView : NamedItemView {36 public partial class ScatterPlotView : NamedItemView, IConfigureableView { 37 37 protected List<Series> invisibleSeries; 38 38 protected Dictionary<IObservableList<Point2D<double>>, ScatterPlotDataRow> pointsRowsTable; … … 109 109 base.SetEnabledStateOfControls(); 110 110 chart.Enabled = Content != null; 111 } 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."); 111 119 } 112 120 -
trunk/sources/HeuristicLab.Analysis/3.3/DataVisualization/ScatterPlotDataRowVisualProperties.cs
r8280 r8907 32 32 [StorableClass] 33 33 public class ScatterPlotDataRowVisualProperties : DeepCloneable, INotifyPropertyChanged { 34 #region DotStyle34 #region PointStyle 35 35 public enum ScatterPlotDataRowPointStyle { 36 36 Circle,
Note: See TracChangeset
for help on using the changeset viewer.