Вход Регистрация
Файл: admin/skins/lib/flot/jquery.flot.threshold.js
Строк: 98
<?php
/*
Flot plugin for thresholding data. Controlled through the option
"threshold" in either the global series options

  series: {
    threshold: {
      below: number
      color: colorspec
    }
  }

or in a specific series

  $.plot($("#placeholder"), [{ data: [ ... ], threshold: { ... }}])

The data points below "below" are drawn with the specified color. This
makes it easy to mark points below 0, e.g. for budget data.

Internally, the plugin works by splitting the data into two series,
above and below the threshold. The extra series below the threshold
will have its label cleared and the special "originSeries" attribute
set to the original series. You may need to check for this in hover
events.
*/

(function ($) {
    var 
options = {
        
series: { thresholdnull // or { below: number, color: color spec}
    
};
    
    function 
init(plot) {
        function 
thresholdData(plotsdatapoints) {
            if (!
s.threshold)
                return;
            
            var 
ps datapoints.pointsizeixypprevp,
                
thresholded = $.extend({}, s); // note: shallow copy

            
thresholded.datapoints = { points: [], pointsizeps };
            
thresholded.label null;
            
thresholded.color s.threshold.color;
            
thresholded.threshold null;
            
thresholded.originSeries s;
            
thresholded.data = [];

            var 
below s.threshold.below,
                
origpoints datapoints.points,
                
addCrossingPoints s.lines.show;

            
threspoints = [];
            
newpoints = [];

            for (
0origpoints.length+= ps) {
                
origpoints[i]
                
origpoints[1];

                
prevp p;
                if (
below)
                    
threspoints;
                else
                    
newpoints;

                if (
addCrossingPoints && prevp != && != null
                    
&& && origpoints[ps] != null) {
                    var 
interx = (origpoints[ps]) / (origpoints[ps 1]) * (below y) + x;
                    
prevp.push(interx);
                    
prevp.push(below);
                    for (
2ps; ++m)
                        
prevp.push(origpoints[m]);
                    
                    
p.push(null); // start new segment
                    
p.push(null);
                    for (
2ps; ++m)
                        
p.push(origpoints[m]);
                    
p.push(interx);
                    
p.push(below);
                    for (
2ps; ++m)
                        
p.push(origpoints[m]);
                }

                
p.push(x);
                
p.push(y);
            }

            
datapoints.points newpoints;
            
thresholded.datapoints.points threspoints;
            
            if (
thresholded.datapoints.points.length 0)
                
plot.getData().push(thresholded);
                
            
// FIXME: there are probably some edge cases left in bars
        
}
        
        
plot.hooks.processDatapoints.push(thresholdData);
    }
    
    $.
plot.plugins.push({
        
initinit,
        
optionsoptions,
        
name'threshold',
        
version'1.0'
    
});
})(
jQuery);
?>
Онлайн: 0
Реклама