Example #1
0
 /// <summary>
 /// Creates a new instance of DrawingScheme
 /// </summary>
 protected Scheme()
 {
     base.LegendSymbolMode = SymbolModes.None;
     LegendType = LegendTypes.Scheme;
     _statistics = new Statistics();
     
 }
 /// <summary>
 /// Creates a new instance of BreakSliderGraph
 /// </summary>
 public BreakSliderGraph()
 {
     _graph = new BarGraph(Width, Height);
     _maxSampleSize = 10000;
     _breaks = new List<BreakSlider>();
     _selectedBreakColor = Color.Red;
     _breakColor = Color.Blue;
     TitleFont = new Font("Arial", 20, FontStyle.Bold);
     _borderStyle = BorderStyle.Fixed3D;
     _contextMenu = new ContextMenu();
     _contextMenu.MenuItems.Add("Reset Zoom",ResetZoomClicked);
     _contextMenu.MenuItems.Add("Zoom To Categories", CategoryZoomClicked);
     _statistics = new Statistics();
 }
 /// <summary>
 /// Creates a new instance of StatisticalEventArgs
 /// </summary>
 public StatisticalEventArgs(Statistics statistics)
 {
     _stats = statistics;
 }