We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3c1d1e commit 3e171e6Copy full SHA for 3e171e6
plotly/offline/offline.py
@@ -308,8 +308,9 @@ def iplot(figure_or_data, show_link=True, link_text='Export to plot.ly',
308
if not tools._ipython_imported:
309
raise ImportError('`iplot` can only run inside an IPython Notebook.')
310
311
+ config = {'showLink': show_link, 'linkText': link_text}
312
plot_html, plotdivid, width, height = _plot_html(
- figure_or_data, show_link, link_text, validate,
313
+ figure_or_data, config, validate,
314
'100%', 525, global_requirejs=True)
315
316
display(HTML(plot_html))
@@ -406,8 +407,9 @@ def plot(figure_or_data,
406
407
"Adding .html to the end of your file.")
408
filename += '.html'
409
410
411
412
413
'100%', '100%', global_requirejs=False)
414
415
resize_script = ''
0 commit comments