import Component from '@ember/component';
export default Component.extend({
tagName: '',
didInsertElement: function () {
this._super(...arguments);
const component = this;
this.chart.addGuard(this.name, function () {
if (typeof component.cond === 'function') {
return component.cond(...arguments);
} else {
return component.cond;
}
});
},
willDestroyElement: function () {
this.chart.removeGuard(this.name);