Home | History | Annotate | Download | only in flot

Lines Matching refs:plot

7 properties in a plot.
11 This plugin allows you to plot error-bars over points. Set "errorbars" inside
13 your data array (*even* if you do not intend to plot them later, by setting
76 function processRawData(plot, series, data, datapoints){
162 function drawSeriesErrors(plot, ctx, s){
296 //internal radius value in errorbar, allows to plot radius 0 points and still keep proper sized caps
330 function draw(plot, ctx){
331 var plotOffset = plot.getPlotOffset();
335 $.each(plot.getData(), function (i, s) {
337 drawSeriesErrors(plot, ctx, s);
342 function init(plot) {
343 plot.hooks.processRawData.push(processRawData);
344 plot.hooks.draw.push(draw);
347 $.plot.plugins.push({