You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
will change color of plot, but not rest of the page.
As workaround i manually background color
let mut html = plot.to_html();
if !settings.white_plot_mode {
html = html.replace("<head>", "<head><style>body {background-color: #111111;color: white;}</style>");
}
The text was updated successfully, but these errors were encountered:
I'll have to check what the exact behaviour is with the Python/JavaScript implementations, as I tend to base all decisions like this one on what the canonical libraries do.
Currently using
will change color of plot, but not rest of the page.
As workaround i manually background color
The text was updated successfully, but these errors were encountered: