Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/ViewportConjunctionMode.cs @ 12832

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

#2283 added GUI and charts; fixed MCTS

File size: 795 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace Microsoft.Research.DynamicDataDisplay
7{
8  /// <summary>
9  /// Represents a way how InjectedPlotter's Visible property is coerced when parent plotter's visible changes.
10  /// </summary>
11  public enum ViewportConjunctionMode
12  {
13    /// <summary>
14    /// InjectedPlotter is absolutely independent on parent Plotter.
15    /// </summary>
16    None,
17    /// <summary>
18    /// InjectedPlotter will take X values of Parent Plotter's Visible rect.
19    /// </summary>
20    X,
21    /// <summary>
22    /// InjectedPlotter will take Y values of Parent Plotter's Visible rect.
23    /// </summary>
24    Y,
25    /// <summary>
26    /// InjectedPlotter's Visible follows Parent Plotter's Viisble.
27    /// </summary>
28    XY
29  }
30}
Note: See TracBrowser for help on using the repository browser.