73bcce88
luigser
COMPONENTS
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
<link rel="import" href="../../bower_components/polymer/polymer.html">
<link rel="import" href="../highcharts-datalet/highcharts-datalet.html">
<dom-module id="linechart-datalet">
<template>
<highcharts-datalet id="charts" data-url="{{dataUrl}}" query="{{query}}" fields-order="{{fieldsOrder}}"></highcharts-datalet>
</template>
<script>
var LinechartBehavior = {
transformData: function(){
//Bluid Highchart element
$(this._component.$.charts.$.container).highcharts({
title: {
text: 'Line chart'
},
chart: {
zoomType: 'xy'
},
xAxis: {
categories: this.properties.categories.value,//this._component.categories,
title: {
text: null
}
},
yAxis: {
title: {
text: 'Units'
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
tooltip: {
valueSuffix: ' units'
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'top',
x: -40,
y: 100,
floating: true,
borderWidth: 1,
backgroundColor: ((Highcharts.theme && Highcharts.theme.legendBackgroundColor) || '#FFFFFF'),
shadow: true
},
credits: {
enabled: false
},
series: this.properties.series.value//this._component.series
});
}
};
LinechartDatalet = Polymer({
is: 'linechart-datalet',
ready: function(){
var LinechartComponentBehavior = $.extend(true, {}, HighchartsComponentBehavior, LinechartBehavior);
LinechartComponentBehavior.init(this);
}
});
</script>
</dom-module>
|