I looked into many places flot issue, chart comparision, stackoverflow ans and none of them syas it is fully possible. Going through this answer it seems it is possible using html2canvas, but is there a angularjs plugin for it?
Can anyone help me find a way to export flot chart to pdf?
Plunker example which has my chart and button handler for export.
Just for the sake of plunker link I am showing my click handler
<button type="button" class="btn btn-default btn-xs" ng-click="exportPdf($event)">Export to PDF</button>
$scope.exportPdf = function($event) {
alert("Export to pdf click handler");
}