Last change
on this file since 7729 was
7210,
checked in by epitzer, 13 years ago
|
#1696: Improve usability of BoxChart creator: add automatic positioning of new chart elements
|
File size:
651 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Drawing;
|
---|
4 | using System.Drawing.Drawing2D;
|
---|
5 | using System.Linq;
|
---|
6 | using System.Text;
|
---|
7 | using HeuristicLab.Common;
|
---|
8 | using HeuristicLab.Core;
|
---|
9 | using HeuristicLab.Data;
|
---|
10 | using HeuristicLab.Optimization;
|
---|
11 | using HeuristicLab.Parameters;
|
---|
12 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
13 |
|
---|
14 | namespace 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.