Last change
on this file since 1242 was
1240,
checked in by mstoeger, 16 years ago
|
Transformations on shapes are possible outside of the Draw method. (#424)
|
File size:
1.0 KB
|
Line | |
---|
1 | using System.Drawing;
|
---|
2 | using HeuristicLab.Visualization.LabelProvider;
|
---|
3 |
|
---|
4 | namespace HeuristicLab.Visualization {
|
---|
5 | public class XAxis : WorldShape {
|
---|
6 | public const int PixelsPerInterval = 100;
|
---|
7 |
|
---|
8 | private ILabelProvider labelProvider = new ContinuousLabelProvider("0.####");
|
---|
9 |
|
---|
10 | public ILabelProvider LabelProvider {
|
---|
11 | get { return labelProvider; }
|
---|
12 | set { labelProvider = value; }
|
---|
13 | }
|
---|
14 |
|
---|
15 | public override void Draw(Graphics graphics) {
|
---|
16 | ClearShapes();
|
---|
17 |
|
---|
18 | foreach (double x in AxisTicks.GetTicks(PixelsPerInterval, Parent.Viewport.Width,
|
---|
19 | ClippingArea.Width,
|
---|
20 | ClippingArea.X1)) {
|
---|
21 | TextShape label = new TextShape(x, ClippingArea.Height - 3,
|
---|
22 | labelProvider.GetLabel(x));
|
---|
23 | label.AnchorPositionX = AnchorPositionX.Middle;
|
---|
24 | label.AnchorPositionY = AnchorPositionY.Top;
|
---|
25 | AddShape(label);
|
---|
26 | }
|
---|
27 |
|
---|
28 | base.Draw(graphics);
|
---|
29 | }
|
---|
30 | }
|
---|
31 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.