Blame view

datalets/bubble3d-datalet/bubble3d-datalet.html 9.85 KB
3fe24d39   pina   a new datalet
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
  <!--
  @license
      The MIT License (MIT)
  
      Copyright (c) 2015 Dipartimento di Informatica - Universit� di Salerno - Italy
  
      Permission is hereby granted, free of charge, to any person obtaining a copy
      of this software and associated documentation files (the "Software"), to deal
      in the Software without restriction, including without limitation the rights
      to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
      copies of the Software, and to permit persons to whom the Software is
      furnished to do so, subject to the following conditions:
  
      The above copyright notice and this permission notice shall be included in
      all copies or substantial portions of the Software.
  
      THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
      IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
      FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
      AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
      LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
      OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
      THE SOFTWARE.
  -->
  
  <!--
  * Developed by :
  * ROUTE-TO-PA Project - grant No 645860. - www.routetopa.eu
  *
  -->
  
  <link rel="import" href="../highcharts-datalet/highcharts-datalet.html">
  <script src="http://code.highcharts.com/highcharts-more.js"></script>
  
  <!--
  `bubble3d-datalet` is a 3D bubbles datalet based on highcharts project <http://www.highcharts.com/>
  
  Examples:
  
      An example to create a 3d Bubble chart with multiple series specified (fields4)
  
      <bubble3d-datalet
          data-url="http://ckan.routetopa.eu/api/action/datastore_search?resource_id=#"
          fields='["field1","field2","field3","field4"]'>
      </bubble3d-datalet>
  
      An example to create a 3d Bubble chart  with x and y values,  and a size value (field3)
  
       <bubble3d-datalet
          data-url="http://ckan.routetopa.eu/api/action/datastore_search?resource_id=#"
          fields='["field1","field2","field3"]'>
      </bubble3d-datalet>
  
  @element bubble3d-datalet
  @status v0.1
  @demo demo/index.html
  @group datalets
  -->
  
  <dom-module name="bubble3d-datalet">
      <template>
          <highcharts-datalet id="charts" data-url="{{dataUrl}}"  fields="{{fields}}" data="{{data}}"></highcharts-datalet>
      </template>
      <script>
  
          var Bubble3dBehavior = {
              /**
               * Build Highchart object
               *
               * @method presentData
               */
              presentData: function() {
                  var categoryName = [];
                  var color = {};
                  var bubble3DSeriesData = {};
                  var b3dserie = [];
  
                  Bubble3DArr = [];
                  var dataTmp = [];
                  //Example 1: No Series name is specified in the query
                  if(this.data.length == 3){
                      for (var i = 0; i < this.data[0].data.length; i++) {
                              Bubble3DArr = [this.data[0].data[i], parseFloat(this.data[1].data[i]), parseFloat(this.data[2].data[i])];
                              dataTmp.push(Bubble3DArr)
                          }
                      color = {
                          fillColor: {
                              radialGradient: {cx: 0.4, cy: 0.3, r: 0.7},
                              stops: [
                                  [0, 'rgba(255,255,255,0.5)']
                              ]
                          }
                      }
                      //add data to the series
                      bubble3DSeriesData = {
                          name: "Series",
                          data: dataTmp,
                          marker: color
                      }
                      b3dserie.push(bubble3DSeriesData);
                  }
                  //Example 2: A multi-series 3d bubble charts
                  else{
                      var categoryNameDuplicateValue = [];
                      for (i = 0; i < this.data[0].data.length; i++) {
                              categoryNameDuplicateValue.push(this.data[3].data[i]);
                      }
                      categoryName = categoryNameDuplicateValue.filter(function (itm, i, categoryNameDuplicateValue) {
                          return i == categoryNameDuplicateValue.indexOf(itm);
                      });
                      for (var index = 0; index < categoryName.length; index++) {
                          for (var i = 0; i < this.data[0].data.length; i++) {
                              if (this.data[3].data[i] == categoryName[index]) {
                                  Bubble3DArr = [this.data[0].data[i], this.data[1].data[i], parseFloat(this.data[2].data[i])];
                                  dataTmp.push(Bubble3DArr);
                                  //A different color for each series
                                  color = {
                                      fillColor: {
                                          radialGradient: {cx: 0.4, cy: 0.3, r: 0.7},
                                          stops: [
                                              [0, 'rgba(255,255,255,0.5)'],
                                              [1, Highcharts.Color(Highcharts.getOptions().colors[index]).setOpacity(0.5).get('rgba')]
                                          ]
                                      }
                                  }
                              }
                          }
                          //add data to the series
                          bubble3DSeriesData = {
                              name: "Series: " + categoryName[index],
                              data: dataTmp,
                              marker: color
                          }
  
                          b3dserie.push(bubble3DSeriesData);
                          dataTmp = [];
                      }
                  }
                  $(this._component.$.charts.$.container).highcharts({
                      chart: {
                          type: 'bubble',
                          plotBorderWidth: 1,
                          zoomType: 'xy'
                      },
  
                      legend: {
                          enabled: true
                      },
  
                      title: {
                          text: "" + this._component.title
                      },
                      xAxis: {
                          categories: this.properties.categories.value,
                          title: {
                              text: this._component.xAxisLabel
                          }
                      },
  
                      yAxis: {
                          categories: this.properties.categories.value,
                          title: {
                              text: this._component.yAxisLabel
                          }
                      },
                      title: {
                          text: this._component.title
                      },
                      subtitle: {
                          text: this._component.title
                      },
                      //A custom tooltip
                      tooltip: {
                          shared: true,
                          useHTML: true,
                          headerFormat:
                          '<table ><tr><td style="color: {series.color}">{series.name}</td></tr>' +
                          '<tr><td  <b> {point.key}</b> , <b>{point.y}</b></tr>',
                          pointFormat:
                          '<td style="text-align: right"><b>{point.z}</b></td></tr>',
                          footerFormat: '</table>',
                          followPointer: true
                      },
                      plotOptions: {
                          series: {
                              dataLabels: {
                                  enabled: false,         //enable for label for each bubble
                                  format: '{point.z}'
                              }
                          }
                      },
                      //hide link HighChart
                      credits: {
                          enabled: false
                      },
                     series: b3dserie
                  });
              }
          };
          /**
           * Element registration
           */
          Bubble3dDatalet = Polymer({
              is: 'bubble3d-datalet',
              properties: {
                  /**
                   * It's the label for X axis
                   *
                   * @attribute xAxisLabel
                   * @type String
                   * @default ''
                   */
                  xAxisLabel: {
                      type: String,
                      value: ""
                  },
                  /**
                   * It's the label for Y axis
                   *
                   * @attribute yAxisLabel
                   * @type String
                   * @default ''
                   */
                  yAxisLabel: {
                      type: String,
                      value: ""
                  },
                  /**
                   * It's the title of the chart
                   *
                   * @attribute title
                   * @type Strig
                   * @default ''
                   */
                  title: {
                      type: String,
                      value: ""
                  },
                  /**
                   * It's the component behavior
                   *
                   * @attribute behavior
                   * @type Object
                   * @default {}
                   */
                  behavior : {
                      type : Object,
                      value : {}
                  }
              },
              /**
               * 'ready' callback extend the Bubble3dBehavior with HighchartsComponentBehavior and Bubble3dBehavior
               * and run the Datalet workcycle.
               *
               * @method ready
               */
              ready: function(){
                  this.behavior = $.extend(true, {}, HighchartsComponentBehavior, Bubble3dBehavior);
                  this.async(function(){this.behavior.init(this)},1);
              }
          });
      </script>
  </dom-module>