public void Show() { if (!Visible) { ChartX.Show(); if (!Combined) { ChartY.Show(); } Visible = true; } }
public void SetSeparate() { if (Combined) { if (Visible) { ChartY.Show(); } ChartX.Titles[0].Text = SetComponentTitle(Constants.XComponent); ChartY.Titles[0].Text = SetComponentTitle(Constants.YComponent); Combined = false; } }