im using vivagraph to embed a svg into a div (as a background) it works fine, but vivagraph offers interaction (scroll zoom) is there anyway to remove that kind of interaction with the svg?
I tried to tie up an eventlistner to the svg and disable it through there.
Is there not an easy way to just say "dont interact with svg just scroll down"?
Thanks
When you create renderer set
interactive: falsethat will prevent vivagraph from handling all user input:If you want to have fine-grained control over what to allow VivaGraph, starting from version
0.7.7you can setinteractivevalue to be a string value, which lists enabled features. See more documentation and interactive examples here: no interaction.