Re: AW: AW: plotly plots in apache zeppelin

2021-05-21 Thread f . idelberger
I have no solution for this problem, but you can disable the menu.   fig.to_html(config={'displayModeBar': True})   The function has more parameters that might be interesting performance-wise.   - Original message - From: To: Cc: Subject: AW: AW: plotly plots in apach

Re: AW: plotly plots in apache zeppelin

2021-05-20 Thread f . idelberger
I have created an issue.   - Original message - From: "Jeff Zhang" To: "users" Cc: Subject: Re: AW: plotly plots in apache zeppelin Date: Thu, May 20, 2021 5:31 PM   Awesome, it works.  @f.idelberger, could you create a jira ticket to add such an example in the z

AW: AW: plotly plots in apache zeppelin

2021-05-20 Thread Uwe.Bauder
2021 17:12 An: users@zeppelin.apache.org Betreff: Re: AW: plotly plots in apache zeppelin Dear Uwe, instead of fig.show(), you rather use: print('%html {0}'.format(fig.to_html())) - Original message - From: mailto:uwe.bau...@dlr.de>> To: mailto:users@zeppelin.apache.o

Re: AW: plotly plots in apache zeppelin

2021-05-20 Thread Jeff Zhang
27;%html {0}'.format(fig.to_html())) > > > - Original message ----- > From: > To: > Cc: > Subject: AW: plotly plots in apache zeppelin > Date: Thu, May 20, 2021 4:58 PM > > > I use it with exactly the same example code in my first email: > > >

Re: AW: plotly plots in apache zeppelin

2021-05-20 Thread f . idelberger
Dear Uwe,   instead of   fig.show(),   you rather use:   print('%html {0}'.format(fig.to_html()))   - Original message - From: To: Cc: Subject: AW: plotly plots in apache zeppelin Date: Thu, May 20, 2021 4:58 PM   I use it with exactly the same example code i

AW: plotly plots in apache zeppelin

2021-05-20 Thread Uwe.Bauder
I use it with exactly the same example code in my first email: import plotly.graph_objects as go # Create traces fig = go.Figure() fig.add_trace(go.Scatter(x=[0, 1, 2, 3, 4], y=[0, 1, 4, 9, 16], mode='lines+markers', name='cool line', line=dict(col