You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can put arbitrary HTML in the contents of an item. I don't think that putting angular directives inside items will work nicely (if it works at all).
My objective is to make filters to show/hide specific categories.
In that case you may find the DataSet and DataView of vis.js interesting: with a DataView you can put a filter on a DataSet. You can specify a filter function like function (item) {return item.category === selectedCategory}. Every time the selectedCategory is changed, you can just call dataView.refresh() and the connected Timeline will automatically update the view.
How could I add AngularJS directives to DIV? I want to make a filter for all those divs inside timeline.
The text was updated successfully, but these errors were encountered: