Blame view

datalets/scatterplot-datalet/scatterplot-datalet.html 3.55 KB
36f11711   mwasiluk   d3 scatterplot-da...
1
2
3
4
5
6
  
  <link rel="import" href="../base-ajax-json-alasql-datalet/base-ajax-json-alasql-datalet.html">
  
  
  <dom-module id="scatterplot-datalet">
      <template>
50380d5a   mwasiluk   d3 scatterplot-da...
7
8
9
10
11
12
13
14
15
          <link rel="stylesheet" href="../../bower_components/d3-scatterplot/dist/d3-scatterplot.min.css">
          <style is="custom-style">
              :host ::content #scatterplot-placeholder {
                  width: 100%;
                  height: 70%;
                  background: #ffffff;
                  position: relative;
              }
          </style>
36f11711   mwasiluk   d3 scatterplot-da...
16
17
18
          <div id="scatterplot-placeholder"></div>
          <base-ajax-json-alasql-datalet data-url="{{dataUrl}}" fields="{{fields}}" data="{{data}}" title="{{title}}" description="{{description}}" export_menu="{{export_menu}}"></base-ajax-json-alasql-datalet>
      </template>
36f11711   mwasiluk   d3 scatterplot-da...
19
      <script src="../shared_js/d3.js"></script>
50380d5a   mwasiluk   d3 scatterplot-da...
20
      <script type="text/javascript" src="../../bower_components/d3-scatterplot/dist/d3-scatterplot.js"></script>
36f11711   mwasiluk   d3 scatterplot-da...
21
22
23
      <script>
  
          var ScatterplotBehavior = {
50380d5a   mwasiluk   d3 scatterplot-da...
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
              presentData: function () {
  
                  var self =this;
                  var scatterSeries = [];
                  var series = [];
                  var point = [];
  
                  for (var j = 0; j < this.data[0]["data"].length; j++) {
                      point = [this.data[0].data[j], this.data[1].data[j]];
                      series.push(point);
                  }
  
                  scatterSeries.push({data: series});
  
                  this.properties.series = scatterSeries;
                  this._component.legend = false;
  
                  var conf = {
  //                    width: 500,
  //                    height: 500,
                      x:{
                          label: self._component.yAxisLabel
                      },
                      y:{
                          label: self._component.yAxisLabel
                      },
                      dot: {
                          // color: 'red'
                      }
                  };
36f11711   mwasiluk   d3 scatterplot-da...
54
  
50380d5a   mwasiluk   d3 scatterplot-da...
55
56
57
                  var plot = new D3ScatterPlot("#scatterplot-placeholder", this.properties.series[0].data, conf);
                  plot.init();
              }
36f11711   mwasiluk   d3 scatterplot-da...
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
          };
  
          ScatterplotDatalet = Polymer({
              is: 'scatterplot-datalet',
              properties: {
                  xAxisLabel: {
                      type: String,
                      value: ""
                  },
                  yAxisLabel: {
                      type: String,
                      value: ""
                  },
                  behavior : {
                      type : Object,
                      value : {}
                  },
                  /**
                   * Control the export menu
                   * xxxx BITMASK. FROM RIGHT : HTML, PNG, RTF, MY SPACE (eg. 1111 show all, 0000 hide all)
                   *
                   * @attribute export_menu
                   * @type Number
                   * @default 15
                   */
                  export_menu : {
                      type  : Number,
                      value : 15 // xxxx BITMASK. FROM RIGHT : HTML, PNG, RTF, MY SPACE (eg. 1111 show all, 0000 hide all)
                  }
              },
  
              /**
               * 'ready' callback extend the scatterchartComponentBehavior with HighchartsComponentBehavior and scatterchartBehavior
               * and run the Datalet workcycle.
               *
               * @method ready
               */
              ready: function(){
                  this.behavior = $.extend(true, {}, BaseDataletBehavior, WorkcycleBehavior, AjaxJsonAlasqlBehavior, ScatterplotBehavior);
                  this.async(function(){this.behavior.init(this)},0);
              }
          });
      </script>
  </dom-module>