Home | History | Annotate | Download | only in flot

Lines Matching refs:plot

8 in the plot. Image must be a fully loaded Javascript image (you can make one
16 Then call $.plot.image.loadData( data, options, callback ) where data and
17 options are the same as you pass in to $.plot. This loads the images, replaces
20 $.plot with the data set. See the included example.
22 A more low-level helper, $.plot.image.load(urls, callback) is also included.
38 $.plot( $("#placeholder"), [{
48 half a pixel stick out to each side in the plot.
66 $.plot.image = {};
68 $.plot.image.loadDataImages = function (series, options, callback) {
88 $.plot.image.load(urls, function (loadedImages) {
99 $.plot.image.load = function (urls, callback) {
118 function drawSeries(plot, ctx, series) {
119 var plotOffset = plot.getPlotOffset();
216 function processRawData(plot, series, data, datapoints) {
230 function init(plot) {
231 plot.hooks.processRawData.push(processRawData);
232 plot.hooks.drawSeries.push(drawSeries);
235 $.plot.plugins.push({