Chartjs-How to present on the Y axis, format hh: mm: ss Chart.js

0👍

You can apply $filter in to the property you want to format. Please make sure you are injected $filter in to your controller

$filter('date')($scope.yourproperty, "h:mm:ss");

https://docs.angularjs.org/api/ng/filter/date

Leave a comment