Вход Регистрация
Файл: Main Website Files/assets/bower_components/flot/jquery.flot.symbol.js
Строк: 59
<?php
/* Flot plugin that adds some extra symbols for plotting points.

Copyright (c) 2007-2014 IOLA and Ole Laursen.
Licensed under the MIT license.

The symbols are accessed as strings through the standard symbol options:

    series: {
        points: {
            symbol: "square" // or "diamond", "triangle", "cross"
        }
    }

*/

(function ($) {
    function 
processRawData(plotseriesdatapoints) {
        
// we normalize the area of each symbol so it is approximately the
        // same as a circle of the given radius

        
var handlers = {
            
square: function (ctxxyradiusshadow) {
                
// pi * r^2 = (2s)^2  =>  s = r * sqrt(pi)/2
                
var size radius Math.sqrt(Math.PI) / 2;
                
ctx.rect(sizesizesize sizesize size);
            },
            
diamond: function (ctxxyradiusshadow) {
                
// pi * r^2 = 2s^2  =>  s = r * sqrt(pi/2)
                
var size radius Math.sqrt(Math.PI 2);
                
ctx.moveTo(sizey);
                
ctx.lineTo(xsize);
                
ctx.lineTo(sizey);
                
ctx.lineTo(xsize);
                
ctx.lineTo(sizey);
            },
            
triangle: function (ctxxyradiusshadow) {
                
// pi * r^2 = 1/2 * s^2 * sin (pi / 3)  =>  s = r * sqrt(2 * pi / sin(pi / 3))
                
var size radius Math.sqrt(Math.PI Math.sin(Math.PI 3));
                var 
height size Math.sin(Math.PI 3);
                
ctx.moveTo(size/2height/2);
                
ctx.lineTo(size/2height/2);
                if (!
shadow) {
                    
ctx.lineTo(xheight/2);
                    
ctx.lineTo(size/2height/2);
                }
            },
            
cross: function (ctxxyradiusshadow) {
                
// pi * r^2 = (2s)^2  =>  s = r * sqrt(pi)/2
                
var size radius Math.sqrt(Math.PI) / 2;
                
ctx.moveTo(sizesize);
                
ctx.lineTo(sizesize);
                
ctx.moveTo(sizesize);
                
ctx.lineTo(sizesize);
            }
        };

        var 
series.points.symbol;
        if (
handlers[s])
            
series.points.symbol handlers[s];
    }
    
    function 
init(plot) {
        
plot.hooks.processDatapoints.push(processRawData);
    }
    
    $.
plot.plugins.push({
        
initinit,
        
name'symbols',
        
version'1.0'
    
});
})(
jQuery);
?>
Онлайн: 2
Реклама