-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CT-794] Export Lineage Graph as SVG or PDF #283
Comments
@nelsoncardenas Sorry for the delay getting back to you! The logic for the graph export is neatly self-contained in just a few lines of code. We use the dbt-docs/src/app/components/graph/graph-viz.js Lines 210 to 214 in 85dec85
It looks like the cytoscape library has built-in support for PNG, JPG, and JSON as export options (no SVG): https://js.cytoscape.org/#core/export But it also looks like someone has developed an extension to the cytoscape library, for SVG exports: https://github.com/kinimesi/cytoscape-svg Is that something you'd be interested in experimenting with? |
Thanks, @jtcohen6, I'll need to study how to contribute to the project. Also, my JavaScript skills are basic, I'm a python developer (machine learning engineer). But I'd like to work on this issue and I can ask for help from some friends maybe. |
@nelsoncardenas @jtcohen6 Is this still open? |
@abhijithp05 sorry, I have been busy, and I don't think I'll have any time soon to work on this issue. |
@nelsoncardenas Created a PR for the issue. Please review. and merge |
This issue has been marked as Stale because it has been open for 180 days with no activity. If you would like the issue to remain open, please comment on the issue or else it will be closed in 7 days. |
I cannot approve that PR (#365), maybe drewbanin can give us some help here. |
Describe the feature
Problem: if we want to generate an image for our Lineage Graph, there is the option to export the graph as PNG, but this image has no quality options.
Example:
To add more flexibility, dbt can allow generating not just the PNG, but an SVG or PDF file with vectorized images. Reference: Scalable Vector Graphics
Describe alternatives you've considered
You can try to add PNG configurations as
ppi
anddimensions
, but a scalable image format is a more general solution.Who will this benefit?
Are you interested in contributing this feature?
Maybe, but I'm not so familiar with the dbt repo.
The text was updated successfully, but these errors were encountered: