Plot plotly's figure in dash html

Hi,
how i can plot this in a html.Div? It’s possible?

categories = ['processing cost','mechanical properties','chemical stability',
              'thermal stability', 'device integration']

fig = go.Figure()

fig.add_trace(go.Scatterpolar(
      r=[1, 5, 2, 2, 3],
      theta=categories,
      fill='toself',
      name='Product A'
))
fig.add_trace(go.Scatterpolar(
      r=[4, 3, 2.5, 1, 2],
      theta=categories,
      fill='toself',
      name='Product B'
))

fig.update_layout(
  polar=dict(
    radialaxis=dict(
      visible=True,
      range=[0, 5]
    )),
  showlegend=False
)

fig.show()

I found this and works!!

https://plot.ly/python/line-charts/

Hi @JoseMarqueses any plotly figure object can be given as the figure argument of a dcc.Graph in Dash.