Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 3af5039

Browse filesBrowse files
committed
update plot with new _plot_html output arguments
1 parent cb6e87f commit 3af5039
Copy full SHA for 3af5039

File tree

Expand file treeCollapse file tree

1 file changed

+4
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+4
-2
lines changed

‎plotly/offline/offline.py

Copy file name to clipboardExpand all lines: plotly/offline/offline.py
+4-2Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,11 @@ def iplot(figure_or_data, show_link=True, link_text='Export to plot.ly',
171171

172172
from IPython.display import HTML, display
173173

174-
display(HTML(_plot_html(
174+
plot_html, plotdivid, width, height = _plot_html(
175175
figure_or_data, show_link, link_text, validate,
176-
'100%', 525)))
176+
'100%', 525)
177+
178+
display(HTML(plot_html))
177179

178180

179181
def plot(figure_or_data,

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.