Free cookie consent management tool by TermsFeed Policy Generator

Changeset 1325


Ignore:
Timestamp:
03/11/09 17:38:19 (15 years ago)
Author:
cbahner
Message:

#519 first aggregators: min, max, avg single and avg multiple line

Location:
trunk/sources/HeuristicLab.Visualization
Files:
5 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Visualization/HeuristicLab.Visualization.csproj

    r1249 r1325  
    6868  </ItemGroup>
    6969  <ItemGroup>
     70    <Compile Include="AvgAggregator.cs" />
     71    <Compile Include="AvgLineAggregator.cs" />
    7072    <Compile Include="AxisTicks.cs" />
    7173    <Compile Include="Canvas.cs" />
     
    8284    <Compile Include="CompositeShape.cs" />
    8385    <Compile Include="ChartDataRowsModelDataCollector.cs" />
     86    <Compile Include="IAggregator.cs" />
    8487    <Compile Include="LabelProvider\ContinuousLabelProvider.cs" />
    8588    <Compile Include="LabelProvider\DiscreteLabelProvider.cs" />
     
    8992    <Compile Include="IMouseEventListener.cs" />
    9093    <Compile Include="Legend\LegendItem.cs" />
     94    <Compile Include="MaxAggregator.cs" />
     95    <Compile Include="MinAggregator.cs" />
    9196    <Compile Include="Options\OptionsDialog.cs">
    9297      <SubType>Form</SubType>
  • trunk/sources/HeuristicLab.Visualization/IDataRow.cs

    r1285 r1325  
    77    Normal, SingleValue
    88  }
    9  
     9
    1010  public interface IDataRow {
    1111    string Label { get; set; }
     
    1919    /// Raised when data row data changed. Should cause redraw in the view.
    2020    /// </summary>
    21     event DataRowChangedHandler DataRowChanged;
    2221
    2322    void AddValue(double value);
     
    4039    event ValuesChangedHandler ValuesChanged;
    4140    event ValueChangedHandler ValueChanged;
     41    event DataRowChangedHandler DataRowChanged;
    4242  }
    4343}
Note: See TracChangeset for help on using the changeset viewer.