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
In Python include_plotlyjs has some more features that I like very much. These are:
When the value is true the plotly.min.js is included in the HTML file. Thus, it is self-contained.
(A bit simplified) When the value is directory the plotly.min.js is copied to the given directory. Thus, no more action is needed by the user and one can show the HTML files offline.
In Python
include_plotlyjs
has some more features that I like very much. These are:true
theplotly.min.js
is included in the HTML file. Thus, it is self-contained.directory
theplotly.min.js
is copied to the given directory. Thus, no more action is needed by the user and one can show the HTML files offline.See
https://github.com/plotly/plotly.py/blob/d281683eafe2efa55c596605b1e40d68b92973c9/packages/python/plotly/plotly/io/_html.py#L56-L87
for the documentation part of all the features and
https://github.com/plotly/plotly.py/blob/d281683eafe2efa55c596605b1e40d68b92973c9/packages/python/plotly/plotly/io/_html.py#L546-L551
for the implementation of item 2.
The text was updated successfully, but these errors were encountered: