Forex_Strategy_Builder.Actions.ShowPriceLine_OnClick C# (CSharp) Method

ShowPriceLine_OnClick() protected method

Menu ShowPriceLine_OnClick.
protected ShowPriceLine_OnClick ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        protected override void ShowPriceLine_OnClick(object sender, EventArgs e)
        {
            ToolStripMenuItem mi = (ToolStripMenuItem)sender;
            Configs.ShowPriceChartOnAccountChart = mi.Checked;

            smallBalanceChart.SetChartData();
            smallBalanceChart.InitChart();
            smallBalanceChart.Invalidate();

            return;
        }
Actions