Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 |
|
---|
6 | namespace 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.