Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
F
flot
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
HS-public
flot
Commits
410dd7db
Commit
410dd7db
authored
Feb 09, 2013
by
David Schnur
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #953 from dnschnur/jquery-chainable
Added the plot function as a chainable property.
parents
1cb170df
a787fa4e
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
0 deletions
+21
-0
API.md
API.md
+8
-0
NEWS.md
NEWS.md
+3
-0
jquery.flot.js
jquery.flot.js
+10
-0
No files found.
API.md
View file @
410dd7db
...
...
@@ -15,6 +15,14 @@ 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.
...
...
NEWS.md
View file @
410dd7db
...
...
@@ -104,6 +104,9 @@ The base and overlay canvas are now using the CSS classes "flot-base" and
-
Added a new option called 'zero' to bars and filled lines series, to control
whether the y-axis minimum is scaled to fit the data or set to zero.
-
The plot function is now also a jQuery chainable property.
(patch by David Schnur, issues #734 and #816, pull request #953)
### Bug fixes ###
-
Fix problem with null values and pie plugin. (patch by gcruxifix,
...
...
jquery.flot.js
View file @
410dd7db
...
...
@@ -2681,6 +2681,8 @@ Licensed under the MIT license.
}
}
// Add the plot function to the top level of the jQuery object
$
.
plot
=
function
(
placeholder
,
data
,
options
)
{
//var t0 = new Date();
var
plot
=
new
Plot
(
$
(
placeholder
),
data
,
options
,
$
.
plot
.
plugins
);
...
...
@@ -2692,6 +2694,14 @@ Licensed under the MIT license.
$
.
plot
.
plugins
=
[];
// Also add the plot function as a chainable property
$
.
fn
.
plot
=
function
(
data
,
options
)
{
return
this
.
each
(
function
()
{
$
.
plot
(
this
,
data
,
options
);
});
}
// round to nearby lower multiple of base
function
floorInBase
(
n
,
base
)
{
return
base
*
Math
.
floor
(
n
/
base
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment