Example #1
0
 private void OnClickAll()
 {
     if (GraphContainer.IsShownById(_graphId))
     {
         GraphContainer.HideGraphById(_graphId);
     }
     else
     {
         GraphContainer.ShowGraphById(_graphId);
         CurrentData.ForceUpdateData();
     }
 }
Example #2
0
        public override void OnAllClick()
        {
            if (_showText)
            {
                _showText = false;
            }
            else
            {
                _showText = true;
            }

            if (GraphContainer.IsShownById(_graphId))
            {
                GraphContainer.HideGraphById(_graphId);
            }
            else
            {
                GraphContainer.ShowGraphById(_graphId);
                CurrentData.ForceUpdateData();
            }
        }