-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Toggle the visibility of groups and subgroups #257
Comments
docs for graph2d: http://visjs.org/docs/graph2d.html#groups |
I have something similar implemented in mine. Each group has a var list = groups.get({
filter: function(item) {
return (item.display == "shown");
}
})
timeline.setGroups(list); |
Hey! |
Hi Luka, The network module is separate from the timeline module but to answer your question you can take a look at issue #140. You can combine the answer there (set color to rgba(0,0,0,0)) and combine that with the examples on groups (27, 28, 29) and use that to change color settings of groups to hide what your what. Regards, Alex Edit: if this is still an issue for you, could you make a new issue so we can discuss the network module separately? |
Hello Alex, |
Hi, Try rgba(0,0,0,0) As color. That make them transparent. It's a bit cleaner Regards |
Hi, Over the last year a lot of feature requests have been made. We have just introduced our new website which has a list of the requested features. We have placed this request on that list. The list can be found here: An explaination of the new system can be found here: I would like to stress that this does not mean we abandon this request. Discussion here will continue if needed on this feature but we will close it to keep our Github issue page more of a bug-todo list. Future feature requests will still be made here and then added to the website by us. Regards, Alex |
Reopening as Feature-Request issue (see #2114). |
@mojoaxel I just ran into the need for this feature. If you don't mind, i'd like to take a shot at implementing this. |
It would be useful to implement a property
visible
for groups in the Timeline, similar to that of Graph2D, so you can toggle visibility of individual groups.The text was updated successfully, but these errors were encountered: