source:
branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/Common/Auxiliary/PlacementExtensions.cs
@
13808
Last change on this file since 13808 was 12503, checked in by aballeit, 9 years ago | |
---|---|
File size: 428 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Linq; |
4 | using System.Text; |
5 | using Microsoft.Research.DynamicDataDisplay.Charts; |
6 | |
7 | namespace Microsoft.Research.DynamicDataDisplay.Common.Auxiliary |
8 | { |
9 | internal static class PlacementExtensions |
10 | { |
11 | public static bool IsBottomOrTop(this AxisPlacement placement) |
12 | { |
13 | return placement == AxisPlacement.Bottom || placement == AxisPlacement.Top; |
14 | } |
15 | } |
16 | } |
Note: See TracBrowser
for help on using the repository browser.