- Timestamp:
- 09/15/18 11:47:03 (6 years ago)
- Location:
- branches/2947_ConfigurableIndexedDataTable/HeuristicLab.Analysis/3.3
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2947_ConfigurableIndexedDataTable/HeuristicLab.Analysis/3.3/DataVisualization/DataRow.cs
r15583 r16149 34 34 [Item("DataRow", "A row of data values.")] 35 35 [StorableClass] 36 public class DataRow : NamedItem {36 public class DataRow : NamedItem , IDataRow { 37 37 private DataRowVisualProperties visualProperties; 38 38 public DataRowVisualProperties VisualProperties { -
branches/2947_ConfigurableIndexedDataTable/HeuristicLab.Analysis/3.3/DataVisualization/DataTable.cs
r15583 r16149 37 37 [Item("DataTable", "A table of data values.")] 38 38 [StorableClass] 39 public class DataTable : NamedItem, IStringConvertibleMatrix {39 public class DataTable : NamedItem, IStringConvertibleMatrix, IDataTable<DataRow> { 40 40 public static new Image StaticItemImage { 41 41 get { return HeuristicLab.Common.Resources.VSImageLibrary.Performance; } -
branches/2947_ConfigurableIndexedDataTable/HeuristicLab.Analysis/3.3/DataVisualization/IndexedDataTable.cs
r15583 r16149 34 34 [Item("IndexedDataTable", "A data table where the points are also given with a certain index.")] 35 35 [StorableClass] 36 public class IndexedDataTable<T> : NamedItem, IStringConvertibleMatrix {36 public class IndexedDataTable<T> : NamedItem, IStringConvertibleMatrix, IDataTable<IndexedDataRow<T>> { 37 37 public static new Image StaticItemImage { 38 38 get { return HeuristicLab.Common.Resources.VSImageLibrary.Performance; } -
branches/2947_ConfigurableIndexedDataTable/HeuristicLab.Analysis/3.3/HeuristicLab.Analysis-3.3.csproj
r14734 r16149 134 134 <Compile Include="DataVisualization\IndexedDataRow.cs" /> 135 135 <Compile Include="DataVisualization\IndexedDataTable.cs" /> 136 <Compile Include="DataVisualization\Interfaces\IDataRow.cs" /> 137 <Compile Include="DataVisualization\Interfaces\IDataTable.cs" /> 136 138 <Compile Include="DataVisualization\ScatterPlotDataRowVisualProperties.cs" /> 137 139 <Compile Include="DataVisualization\ScatterPlotDataRow.cs" />
Note: See TracChangeset
for help on using the changeset viewer.