Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
C
CurvedLines
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
CurvedLines
Commits
5d4aec1a
Commit
5d4aec1a
authored
Feb 18, 2013
by
MichaelZinsmaier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed flot.threshold
parent
97c28913
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
103 deletions
+0
-103
jquery.flot.threshold.js
flot/jquery.flot.threshold.js
+0
-103
No files found.
flot/jquery.flot.threshold.js
deleted
100644 → 0
View file @
97c28913
/*
Flot plugin for thresholding data. Controlled through the option
"threshold" in either the global series options
series: {
threshold: {
below: number
color: colorspec
}
}
or in a specific series
$.plot($("#placeholder"), [{ data: [ ... ], threshold: { ... }}])
The data points below "below" are drawn with the specified color. This
makes it easy to mark points below 0, e.g. for budget data.
Internally, the plugin works by splitting the data into two series,
above and below the threshold. The extra series below the threshold
will have its label cleared and the special "originSeries" attribute
set to the original series. You may need to check for this in hover
events.
*/
(
function
(
$
)
{
var
options
=
{
series
:
{
threshold
:
null
}
// or { below: number, color: color spec}
};
function
init
(
plot
)
{
function
thresholdData
(
plot
,
s
,
datapoints
)
{
if
(
!
s
.
threshold
)
return
;
var
ps
=
datapoints
.
pointsize
,
i
,
x
,
y
,
p
,
prevp
,
thresholded
=
$
.
extend
({},
s
);
// note: shallow copy
thresholded
.
datapoints
=
{
points
:
[],
pointsize
:
ps
};
thresholded
.
label
=
null
;
thresholded
.
color
=
s
.
threshold
.
color
;
thresholded
.
threshold
=
null
;
thresholded
.
originSeries
=
s
;
thresholded
.
data
=
[];
var
below
=
s
.
threshold
.
below
,
origpoints
=
datapoints
.
points
,
addCrossingPoints
=
s
.
lines
.
show
;
threspoints
=
[];
newpoints
=
[];
for
(
i
=
0
;
i
<
origpoints
.
length
;
i
+=
ps
)
{
x
=
origpoints
[
i
]
y
=
origpoints
[
i
+
1
];
prevp
=
p
;
if
(
y
<
below
)
p
=
threspoints
;
else
p
=
newpoints
;
if
(
addCrossingPoints
&&
prevp
!=
p
&&
x
!=
null
&&
i
>
0
&&
origpoints
[
i
-
ps
]
!=
null
)
{
var
interx
=
(
x
-
origpoints
[
i
-
ps
])
/
(
y
-
origpoints
[
i
-
ps
+
1
])
*
(
below
-
y
)
+
x
;
prevp
.
push
(
interx
);
prevp
.
push
(
below
);
for
(
m
=
2
;
m
<
ps
;
++
m
)
prevp
.
push
(
origpoints
[
i
+
m
]);
p
.
push
(
null
);
// start new segment
p
.
push
(
null
);
for
(
m
=
2
;
m
<
ps
;
++
m
)
p
.
push
(
origpoints
[
i
+
m
]);
p
.
push
(
interx
);
p
.
push
(
below
);
for
(
m
=
2
;
m
<
ps
;
++
m
)
p
.
push
(
origpoints
[
i
+
m
]);
}
p
.
push
(
x
);
p
.
push
(
y
);
}
datapoints
.
points
=
newpoints
;
thresholded
.
datapoints
.
points
=
threspoints
;
if
(
thresholded
.
datapoints
.
points
.
length
>
0
)
plot
.
getData
().
push
(
thresholded
);
// FIXME: there are probably some edge cases left in bars
}
plot
.
hooks
.
processDatapoints
.
push
(
thresholdData
);
}
$
.
plot
.
plugins
.
push
({
init
:
init
,
options
:
options
,
name
:
'threshold'
,
version
:
'1.0'
});
})(
jQuery
);
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