heatmap-datalet.html 7.44 KB
<!--
@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="js/heatmap.js"></script>

<!--

`heatmap-datalet` is a heat map datalet based on highcharts project <http://www.highcharts.com/>

Example:

    <heatmap-datalet
        data-url="http://ckan.routetopa.eu/api/action/datastore_search?resource_id=#"
        fields='["field1","field2"]'>
    </heatmap-datalet>

@element heatmap-datalet
@status v0.1
@demo demo/index.html
@group datalets
-->

<dom-module id="heatmap-datalet">
    <template>
        <highcharts-datalet id="charts" data-url="{{dataUrl}}" fields="{{fields}}" title="{{title}}" description="{{description}}" export_menu="{{export_menu}}"></highcharts-datalet>
    </template>
    <script>

        var HeatMapBehavior = {

            /**
             * Build Highchart object
             *
             * @method presentData
             */
            presentData: function(){
                var Xcategories = this.properties.categories.value
                var Ycategories = [];
                var series = [];
                for (var i = 0; i < this.properties.series.value.length; i++) {
                    Ycategories.push(this.properties.series.value[i].name);
                    for (var j = 0; j < this.properties.series.value[i].data.length; j++) {
                        series.push([j, i,this.properties.series.value[i].data[j]]);
                    }
                }

                options = {
                    chart: {
                        type: 'heatmap',
                        zoomType: 'xy',
//                        marginTop: 40,
//                        marginBottom: 80,
                        plotBorderWidth: 1
                    },
                    title: {
                        text: this._component.title
                    },
                    xAxis: {
                        categories: Xcategories,
                        title: {
                            text: this._component.xAxisLabel
                        }
                    },
                    yAxis: {
                        categories: Ycategories,
                        title: {
                            text: this._component.yAxisLabel
                        }
                    },
                    tooltip: {
                        valueSuffix: ' ' + this._component.suffix
                    },
                    colorAxis: {
                        min: 0,
                        minColor: '#FFFFFF',
                        maxColor: Highcharts.getOptions().colors[0]
                    },

                    credits: {
                        enabled: false
                    },
                    series: [{
                        borderWidth: 1,
                        data: series,
                        dataLabels: {
                            enabled:  this._component.dataLabels,
                            color: '#000000'
                        },
                    }]
                };

                if(this._component.theme != "themeBase" && this._component.theme != "")
                    jQuery.extend(true, options, Highcharts[this._component.theme]);

                if(this._component.legend == "topRight")
                    options.legend = {
                        layout: 'vertical',
                        verticalAlign: 'top',
                        align: 'right',
                        x: -4,
                        y: 4,
                        floating: true,
                        borderWidth: 1,
                        backgroundColor: ((Highcharts[this._component.theme] && Highcharts[this._component.theme].legendBackgroundColor) || '#FFFFFF'),
                        shadow: true,
                    };
                else if(this._component.legend == "bottom")
                    options.legend = {
                        enabled: true
                    };
                else
                    options.legend ={
                        enabled: false
                    };

                $(this._component.$.charts.$.container).highcharts(options);
            }
        };


        heatmapDatalet = Polymer({
            is: 'heatmap-datalet',

            properties: {
                data: {
                    type: Array,
                    value: undefined
                },
                xAxisLabel: {
                    type: String,
                    value: ""
                },
                yAxisLabel: {
                    type: String,
                    value: ""
                },
                suffix : {
                    type : String,
                    value : ""
                },
                legend : {
                    type : Object,
                    value : "topRight"
                },
                dataLabels : {
                    type : Object,
                    value : true
                },
                stack : {
                    type : Object,
                    value : false
                },
                theme : {
                    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 heatmapComponentBehavior with HighchartsComponentBehavior and heatmapBehavior
             * and run the Datalet workcycle.
             *
             * @method ready
             */
            ready: function(){
                this.behavior = $.extend(true, {}, HighchartsComponentBehavior, HeatMapBehavior);
                this.async(function(){this.behavior.init(this)},0);
            }
        });
    </script>
</dom-module>