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