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
b9c6359c
Commit
b9c6359c
authored
Jan 11, 2014
by
soenter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve the performance of large data processing
parent
e2147c07
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
12 deletions
+16
-12
index.html
examples/selection/index.html
+8
-6
index.html
examples/visitors/index.html
+8
-6
No files found.
examples/selection/index.html
View file @
b9c6359c
...
@@ -67,12 +67,14 @@
...
@@ -67,12 +67,14 @@
var
zoom
=
$
(
"#zoom"
).
attr
(
"checked"
);
var
zoom
=
$
(
"#zoom"
).
attr
(
"checked"
);
if
(
zoom
)
{
if
(
zoom
)
{
plot
=
$
.
plot
(
placeholder
,
data
,
$
.
extend
(
true
,
{},
options
,
{
$
.
each
(
plot
.
getXAxes
(),
function
(
_
,
axis
)
{
xaxis
:
{
var
opts
=
axis
.
options
;
min
:
ranges
.
xaxis
.
from
,
opts
.
min
=
ranges
.
xaxis
.
from
;
max
:
ranges
.
xaxis
.
to
opts
.
max
=
ranges
.
xaxis
.
to
;
}
});
}));
plot
.
setupGrid
();
plot
.
draw
();
plot
.
clearSelection
();
}
}
});
});
...
...
examples/visitors/index.html
View file @
b9c6359c
...
@@ -93,12 +93,14 @@
...
@@ -93,12 +93,14 @@
// do the zooming
// do the zooming
plot
=
$
.
plot
(
"#placeholder"
,
[
d
],
$
.
extend
(
true
,
{},
options
,
{
$
.
each
(
plot
.
getXAxes
(),
function
(
_
,
axis
)
{
xaxis
:
{
var
opts
=
axis
.
options
;
min
:
ranges
.
xaxis
.
from
,
opts
.
min
=
ranges
.
xaxis
.
from
;
max
:
ranges
.
xaxis
.
to
opts
.
max
=
ranges
.
xaxis
.
to
;
}
});
}));
plot
.
setupGrid
();
plot
.
draw
();
plot
.
clearSelection
();
// don't fire event on the overview to prevent eternal loop
// don't fire event on the overview to prevent eternal loop
...
...
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