mirror of
https://git.rwth-aachen.de/acs/public/villas/web/
synced 2025-03-16 00:00:03 +01:00
18 lines
361 B
JavaScript
18 lines
361 B
JavaScript
![]() |
import Ember from 'ember';
|
||
|
|
||
|
const { Component, computed } = Ember;
|
||
|
|
||
|
export default Ember.Component.extend({
|
||
|
tagName: 'canvas',
|
||
|
classNames: ['line-chart'],
|
||
|
|
||
|
didInsertElement: function() {
|
||
|
// create chart
|
||
|
var element = this.get('element');
|
||
|
this.chart = new Chart(element.getContext('2d'));
|
||
|
this.chart.Line(this.chartData, {
|
||
|
|
||
|
});
|
||
|
}
|
||
|
});
|