Free cookie consent management tool by TermsFeed Policy Generator

source: branches/FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/BoxChart/IBoxChartElementGenerator.cs @ 7210

Last change on this file since 7210 was 7210, checked in by epitzer, 12 years ago

#1696: Improve usability of BoxChart creator: add automatic positioning of new chart elements

File size: 651 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Drawing;
4using System.Drawing.Drawing2D;
5using System.Linq;
6using System.Text;
7using HeuristicLab.Common;
8using HeuristicLab.Core;
9using HeuristicLab.Data;
10using HeuristicLab.Optimization;
11using HeuristicLab.Parameters;
12using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
13
14namespace HeuristicLab.Analysis.FitnessLandscape.BoxCharts {
15
16  public interface IBoxChartElementGenerator : INamedItem {
17    int X { get; set; }
18    int Y { get; set; }
19    int ColSpan { get; set; }
20    int RowSpan { get; set; }
21    void Draw(IRun run, Graphics g);
22  }
23}
Note: See TracBrowser for help on using the repository browser.