Last active
December 17, 2015 16:59
-
-
Save pjsvis/5642417 to your computer and use it in GitHub Desktop.
flot.line.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
angular.module('flot') | |
.directive('flotLine', [function () { | |
'use strict'; | |
return { | |
restrict: 'EA', | |
require: 'ngModel', | |
link: function (scope, elem, attrs, ngModel) { | |
var chart = null, | |
opts = { | |
xaxis: { mode: "time" }, | |
legend:{position: "nw"} | |
}; | |
var render=function(){ | |
var data = ngModel.$viewValue; | |
if(angular.isUndefined(data)){ | |
return; | |
} | |
chart = $.plot(elem, data, opts); | |
elem.show(); | |
}; | |
scope.$watch(attrs.ngModel, function (v) { | |
render(); | |
}); | |
// If we have underscore/lodash then re-render on window resize | |
typeof _ !== 'undefined' ? $(window).resize(_.debounce(render, 500)) : angular.noop(); | |
} | |
}; | |
}]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment