public void Update() { ChartX.Update(); if (ChartY.Visible) { ChartY.Update(); } }
public void Hide() { if (Visible) { ChartX.Hide(); ChartY.Hide(); Visible = false; } }
public void SetCombined() { if (!Combined) { ChartY.Hide(); Combined = true; ChartX.Titles[0].Text = Title; } }
private void Clear() { ChartX.Clear(); ChartY.Clear(); ChartZ.Clear(); model.Clear(); SetColors(); startTime = null; }
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; } }
private void StartStopCharts() { if (!paused) { ChartX.Start(); ChartY.Start(); ChartZ.Start(); } else { ChartX.Stop(); ChartY.Stop(); ChartZ.Stop(); } }