-
-
Notifications
You must be signed in to change notification settings - Fork 556
Closed
Labels
TRIAGEDefault label for untriaged issuesDefault label for untriaged issues
Description
Panel 0.10.1
I'm trying to create a demo streaming app with the different plotting libraries supported by Panel. I can see that the Plotly plot does not (re-)size well inside a card. And furthermore does not work responsively in the ReactTemplate.
Minimum reproducible example
import numpy as np
import altair as alt
import pandas as pd
import panel as pn
from streamz.dataframe import DataFrame as sDataFrame
import hvplot.pandas
import plotly.express as px
plotly_pane = pn.pane.Plotly(sizing_mode="stretch_both", config={'responsive': True})
def update_plotly(data):
data = pd.concat(data).reset_index()
plot = px.line(data, y="y", title='Plotly', template="plotly_dark")
plot.layout.autosize=True
plotly_pane.object = plot
df = sDataFrame(example=pd.DataFrame({"y": []}, index=pd.DatetimeIndex([])))
window_stream = df.cumsum().stream.sliding_window(50)
plotly_sink = window_stream.sink(update_plotly)
def emit():
df.emit(pd.DataFrame({"y": [np.random.randn()]}, index=pd.DatetimeIndex([pd.datetime.now()])))
emit()
pn.state.add_periodic_callback(emit, period=100, count=500)
layout = pn.template.ReactTemplate(
site="Awesome Panel",
title="Streaming w. Echarts",
theme=pn.template.react.DarkTheme,
row_height=200,
)
layout.main[0:2, 0:6]=pn.layout.Card(plotly_pane, header="PLOTLY", sizing_mode="stretch_both")
layout.servable()
Metadata
Metadata
Assignees
Labels
TRIAGEDefault label for untriaged issuesDefault label for untriaged issues