detachEvent of ui.chart, Methods Webix Docs
detaches a handler from an event (which was attached before by the attachEvent method)
void detachEvent(string id);
id
Example
var myEvent = $$("mylist").attachEvent("onItemClick", function (){
...//event handler code
});
...
$$("mylist").detachEvent(myEvent);
See also
API
Articles
If you have not checked yet, be sure to visit site of our main product Webix js framework and page of chart library product.