-
Notifications
You must be signed in to change notification settings - Fork 21
t5 chart
Nikolaj Ivancic edited this page Apr 2, 2016
·
2 revisions
Note: this document is a copy of the matching KendoUI Aurelia document. It needs to be updated to describe related Syncfusion EJ document
This wrapper encapsulates the KendoUI module kendo.chart.min.js
, ensuring that it behaves as a standard Aurelia component. See how the Aurelia application uses this component here and here.
import {inject} from 'aurelia-dependency-injection';
import {customElement, bindable} from 'aurelia-templating';
import {WidgetBase} from '../common/widget-base';
import {generateBindables} from '../common/decorators';
import {constants} from '../common/constants';
import 'kendo.dataviz.chart.min';
@customElement(`${constants.elementPrefix}chart`)
@generateBindables('kendoChart')
@inject(Element, WidgetBase)
export class Chart {
@bindable options = {};
constructor(element, widgetBase) {
this.element = element;
this.widgetBase = widgetBase
.control('kendoChart')
.linkViewModel(this);
}
bind(ctx) {
this.$parent = ctx;
}
attached() {
this.recreate();
}
recreate() {
this.kWidget = this.widgetBase.createWidget({
element: this.element,
parentCtx: this.$parent
});
}
detached() {
this.widgetBase.destroy(this.kWidget);
}
}
File chart.html
<template style="display: block;">
</template>
* * * #### Next page: [Grid component](#/help/docs/bridge_developers_tutorials/6._grid_component)