mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Add 100% as a default value for width and height z.show() parameters
This commit is contained in:
parent
3e0ef22121
commit
82c631a20d
1 changed files with 1 additions and 1 deletions
|
|
@ -162,7 +162,7 @@ class PyZeppelinContext(object):
|
|||
#)
|
||||
body_buf.close(); header_buf.close()
|
||||
|
||||
def show_matplotlib(self, p, width="0", height="0", **kwargs):
|
||||
def show_matplotlib(self, p, width="100%", height="100%", **kwargs):
|
||||
"""Matplotlib show function
|
||||
"""
|
||||
img = io.StringIO()
|
||||
|
|
|
|||
Loading…
Reference in a new issue