Commit 881fc001 authored by David Schnur's avatar David Schnur

Merge pull request #1152 from sgissinger/patch-3

Update jquery.flot.threshold.js
parents cc1d6bf3 0006469d
...@@ -135,6 +135,26 @@ You may need to check for this in hover events. ...@@ -135,6 +135,26 @@ You may need to check for this in hover events.
} }
plot.hooks.processDatapoints.push(processThresholds); plot.hooks.processDatapoints.push(processThresholds);
function processThresholdsLegend(ctx, canvas, s) {
if (!s.threshold) {
return;
}
var color = s.threshold.color ? s.threshold.color : "black";
$(".legendLabel").each(function() {
if($(this).text() === s.label)
{
var legend = $(this).prev().find("div > div");
legend.css("border-right-color" , color);
legend.css("border-bottom-color" , color);
}
});
}
plot.hooks.drawSeries.push(processThresholdsLegend);
} }
$.plot.plugins.push({ $.plot.plugins.push({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment