I want to use the Timeline from visjs.org in my AngularJS application. To render the individual cells I want to use an AngularJS template.
On the visjs.org site I can find an example of a Handlebars template, which is working fine.
However I want to use some AngularJS functionality (like i18n filters etc) so I prefer to have a "text/ng-template" template but I don't know how to configure visjs to use AngularJS templates.
Any ideas?
My primary suggestion to use create a directive or component in new angular version for visjs. or use angular-visjs, a directive module developed by visjs team inoder to support angular projects. But you need to consider the following note from the developers
For using template like handlebars you can refer another post from stack overflow itself
Resolve template in AngularJS similar to Handlebars?