public void ClearChart() { for (int i = 0; i < _checkBoxTags.Count; i++) { CheckBoxTag tag = _checkBoxTags[i]; if (tag.ChartCheckBox.BooleanValue) { tag.ClearAndRemoveSeries(); } } }
public void FillChart() { for (int i = 0; i < _checkBoxTags.Count; i++) { CheckBoxTag tag = _checkBoxTags[i]; if (tag.ChartCheckBox.BooleanValue) { tag.ChartCheckBoxCheckedChanged(); } } }