chartify icon indicating copy to clipboard operation
chartify copied to clipboard

Chartify doesn't render plots

Open timofeytkachenko opened this issue 2 years ago • 3 comments

Hi,

I have a problem with chartify plots render. Chartify shows only a white rectangle with the following code of the error: WARNING:bokeh.core.validation.check:W-1000 (MISSING_RENDERERS): Plot has no renderers: figure(id='p1001', ...)

ch1

timofeytkachenko avatar May 16 '23 16:05 timofeytkachenko

I've seen the same error in VSCode, but it should work in Chrome. I hope it's a bokeh issue that will be fixed soon, but will look into it a bit more!

iampelle avatar May 18 '23 15:05 iampelle

I've seen the same error in VSCode, but it should work in Chrome. I hope it's a bokeh issue that will be fixed soon, but will look into it a bit more!

I have the same problem in Chrome, but I have Chrome driver in the path

And I found in issues that this is an old problem, and you can check this issue: https://github.com/spotify/chartify/issues/89

timofeytkachenko avatar May 18 '23 17:05 timofeytkachenko

If you need a quick patch, this answer from StackOverflow worked for me:

from bokeh.resources import INLINE
import bokeh.io
bokeh.io.output_notebook(INLINE)

pawelmajcher avatar Mar 04 '24 21:03 pawelmajcher