-
Notifications
You must be signed in to change notification settings - Fork 324
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
PNG is always a white square #89
Comments
+1 I have the same issue. Can anyone help solving it? Saving to html does work though. |
I have the same issue, still not able to figure it out. |
+1. |
Got this on my Ubuntu server 20.04 Wanted to do a bit debugging here. screenshot of Chrome debugger connected to webdriver (added To enable webdriver logs, do this (edit source code for chartify): driver = webdriver.Chrome(
options=options,
# add this
service_args=[
"--verbose",
"--log-path=/home/ubuntu/melcharter/webdriver.log",
],
) webdriver logs:
So, chromium says that there is no such file, but simple If I change chart path right within This code was patched chartify/chartify/_core/chart.py Lines 433 to 471 in 5ac3a88
The reason is Refs:
So I just fixed my issue with plots by uninstaling chromium
|
type: bug
Environment:
What happened:
The PNG version of the charts always generate a white square image.
The HTML works normally.
What you expected to happen:
It was expected to generate the png of the graphic.
How to reproduce it (as minimally and precisely as possible):
Install the chrome driver and pipefy and try to generate any chart as png with jupyter
The text was updated successfully, but these errors were encountered: