Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/Charts/Axes/AxisPlacement.cs @ 12503

Last change on this file since 12503 was 12503, checked in by aballeit, 9 years ago

#2283 added GUI and charts; fixed MCTS

File size: 601 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace Microsoft.Research.DynamicDataDisplay.Charts
7{
8  /// <summary>
9  /// Defines the position of axis inside ChartPlotter.
10  /// </summary>
11  public enum AxisPlacement
12  {
13    /// <summary>
14    /// Axis is placed to the left.
15    /// </summary>
16    Left,
17    /// <summary>
18    /// Axis is placed to the right.
19    /// </summary>
20    Right,
21    /// <summary>
22    /// Axis is placed to the top.
23    /// </summary>
24    Top,
25    /// <summary>
26    /// Axis is placed to the bottom.
27    /// </summary>
28    Bottom
29  }
30}
Note: See TracBrowser for help on using the repository browser.