- Timestamp:
- 04/04/14 10:18:45 (11 years ago)
- Location:
- branches/Sliding Window GP/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4
- Files:
-
- 1 added
- 1 edited
- 8 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/Sliding Window GP/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/HeuristicLab.Problems.DataAnalysis.Symbolic.Views-3.4.csproj
r10723 r10724 217 217 </Compile> 218 218 <Compile Include="Plugin.cs" /> 219 <Compile Include="SlidingWindowBestSolutionsCollectionHeatMapView.cs"> 220 <SubType>UserControl</SubType> 221 </Compile> 222 <Compile Include="SlidingWindowBestSolutionsCollectionHeatMapView.Designer.cs"> 219 <Compile Include="SlidingWindow\SlidingWindowBestSolutionsCollectionHeatMapControl.cs"> 220 <SubType>UserControl</SubType> 221 </Compile> 222 <Compile Include="SlidingWindow\SlidingWindowBestSolutionsCollectionHeatMapControl.Designer.cs"> 223 <DependentUpon>SlidingWindowBestSolutionsCollectionHeatMapControl.cs</DependentUpon> 224 </Compile> 225 <Compile Include="SlidingWindow\SlidingWindowBestSolutionsCollectionHeatMapView.cs"> 226 <SubType>UserControl</SubType> 227 </Compile> 228 <Compile Include="SlidingWindow\SlidingWindowBestSolutionsCollectionHeatMapView.Designer.cs"> 223 229 <DependentUpon>SlidingWindowBestSolutionsCollectionHeatMapView.cs</DependentUpon> 224 230 </Compile> 225 <Compile Include="SlidingWindowBestSolutionsCollectionHeatMapControl.cs"> 226 <SubType>UserControl</SubType> 227 </Compile> 228 <Compile Include="SlidingWindowBestSolutionsCollectionHeatMapControl.Designer.cs"> 229 <DependentUpon>SlidingWindowBestSolutionsCollectionHeatMapControl.cs</DependentUpon> 230 </Compile> 231 <Compile Include="SlidingWindowBestSolutionsCollectionView.cs"> 232 <SubType>UserControl</SubType> 233 </Compile> 234 <Compile Include="SlidingWindowBestSolutionsCollectionView.Designer.cs"> 231 <Compile Include="SlidingWindow\SlidingWindowBestSolutionsCollectionView.cs"> 232 <SubType>UserControl</SubType> 233 </Compile> 234 <Compile Include="SlidingWindow\SlidingWindowBestSolutionsCollectionView.Designer.cs"> 235 235 <DependentUpon>SlidingWindowBestSolutionsCollectionView.cs</DependentUpon> 236 236 </Compile> 237 <Compile Include="SlidingWindow DataView.cs">238 <SubType>UserControl</SubType> 239 </Compile> 240 <Compile Include="SlidingWindow DataView.Designer.cs">237 <Compile Include="SlidingWindow\SlidingWindowDataView.cs"> 238 <SubType>UserControl</SubType> 239 </Compile> 240 <Compile Include="SlidingWindow\SlidingWindowDataView.Designer.cs"> 241 241 <DependentUpon>SlidingWindowDataView.cs</DependentUpon> 242 242 </Compile> -
branches/Sliding Window GP/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/SlidingWindow/SlidingWindowBestSolutionsCollectionHeatMapControl.cs
r10723 r10724 109 109 } 110 110 111 heatMapView.Content = new HeatMap(values, string.Empty, min, max);111 heatMapView.Content = new HeatMap(values, "Best Sliding Window Solutions", min, max); 112 112 } 113 113 -
branches/Sliding Window GP/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/SlidingWindow/SlidingWindowBestSolutionsCollectionHeatMapView.cs
r10723 r10724 13 13 var chartArea = chart.ChartAreas[0]; 14 14 chartArea.AxisX.Title = "Sliding window position"; 15 chartArea.AxisX.IsStartedFromZero = true; 15 16 chartArea.AxisY.Title = "Best solution"; 16 17 chartArea.AxisY.IsReversed = true; 18 chartArea.AxisX.IsStartedFromZero = true; 17 19 } 18 20 }
Note: See TracChangeset
for help on using the changeset viewer.