Forex_Strategy_Builder.Small_Indicator_Chart.Small_Indicator_Chart C# (CSharp) Method

Small_Indicator_Chart() public method

Public constructor
public Small_Indicator_Chart ( ) : System
return System
        public Small_Indicator_Chart()
        {
            Padding = new Padding(border, 0, border, border);

            // Horizontal scroll bar
            scrollBar = new HScrollBar();
            scrollBar.Parent        = this;
            scrollBar.Dock          = DockStyle.Bottom;
            scrollBar.SmallChange   = 1;
            scrollBar.LargeChange   = 50;
            scrollBar.Minimum       = 0;
            scrollBar.Maximum       = 1000;
            scrollBar.Visible       = true;
            scrollBar.ValueChanged += new EventHandler(HscrllbInstrChart_ValueChanged);
        }