Changeset 1325 for trunk/sources/HeuristicLab.Visualization
- Timestamp:
- 03/11/09 17:38:19 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.Visualization
- Files:
-
- 5 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Visualization/HeuristicLab.Visualization.csproj
r1249 r1325 68 68 </ItemGroup> 69 69 <ItemGroup> 70 <Compile Include="AvgAggregator.cs" /> 71 <Compile Include="AvgLineAggregator.cs" /> 70 72 <Compile Include="AxisTicks.cs" /> 71 73 <Compile Include="Canvas.cs" /> … … 82 84 <Compile Include="CompositeShape.cs" /> 83 85 <Compile Include="ChartDataRowsModelDataCollector.cs" /> 86 <Compile Include="IAggregator.cs" /> 84 87 <Compile Include="LabelProvider\ContinuousLabelProvider.cs" /> 85 88 <Compile Include="LabelProvider\DiscreteLabelProvider.cs" /> … … 89 92 <Compile Include="IMouseEventListener.cs" /> 90 93 <Compile Include="Legend\LegendItem.cs" /> 94 <Compile Include="MaxAggregator.cs" /> 95 <Compile Include="MinAggregator.cs" /> 91 96 <Compile Include="Options\OptionsDialog.cs"> 92 97 <SubType>Form</SubType> -
trunk/sources/HeuristicLab.Visualization/IDataRow.cs
r1285 r1325 7 7 Normal, SingleValue 8 8 } 9 9 10 10 public interface IDataRow { 11 11 string Label { get; set; } … … 19 19 /// Raised when data row data changed. Should cause redraw in the view. 20 20 /// </summary> 21 event DataRowChangedHandler DataRowChanged;22 21 23 22 void AddValue(double value); … … 40 39 event ValuesChangedHandler ValuesChanged; 41 40 event ValueChangedHandler ValueChanged; 41 event DataRowChangedHandler DataRowChanged; 42 42 } 43 43 }
Note: See TracChangeset
for help on using the changeset viewer.