Example #1
0
 public void OnCustomizeMapAreas(MapAreasCollection areaItems)
 {
     if (this.control == null)
     {
         this.control = (Chart)this.serviceContainer.GetService(typeof(Chart));
     }
     if (this.control != null)
     {
         this.control.CallCustomizeMapAreas(areaItems);
     }
 }
 public CustomizeMapAreasEventArgs(MapAreasCollection areaItems)
 {
     this.areaItems = areaItems;
 }