tintinweb / vscode-interactive-graphviz

Interactive Graphviz Dot Preview for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=tintinweb.graphviz-interactive-preview
GNU General Public License v3.0
143 stars 22 forks source link

Some features, like gradient and arrowtail not working. #145

Open xleviator opened 1 year ago

xleviator commented 1 year ago

Hi. I'm running this plugin on macOS Ventura 13.0.1 w/ M1 MAX. I notice several rendering features aren't working, including gradient and arrowtail. I have "dot - graphviz version 7.0.4 (20221203.1631)". If I run "dot -Tsvg gradient_example.gv > test.svg", I can see that I get a proper svg with gradient. However, if I view it in the interface or save the svg from the pluggin's interface, the gradient doesn't work. Can you help?

The code I'm using is this:

digraph G {
    node [ shape="ellipse",fillcolor="#aa0000:#00aa00",style="filled" ] ":(";
}
Screenshot 2022-12-21 at 7 48 45 PM
bigbug commented 1 year ago

Thanks for reporting this. I just updated Graphviz in our notebook PR (#104) which seems to resolve the issue:

Screenshot 2023-01-22 at 14 18 29

However, we still need some time till we can merge (and release) these new features.