1页上的多个绘图图,无子图 [英] Multiple plotly plots on 1 page without subplot

查看:84
本文介绍了1页上的多个绘图图,无子图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在1个html页面上使用多个绘图,而不使用tools.make_subplots方法. (我不想使用它,因为我发现它不容易阅读,并且我希望在每个子图面板中都有独特的图例和布局.)

I want to have multiple plotly plots on 1 html page without using the tools.make_subplots method. (I dont want to use that since I find that its not easy to read and I want a unique legend & layout in each of the subplot panels).

我想用自己独特的布局定义2个图形,然后在页面上任意排列它们.我想我知道如何使用html.Div对象使用破折号,但是我想知道是否有一种简单的方法可以仅使用plotly来做到这一点?

I want to define 2 figures with their own unique layouts, and arrange them arbitrarily on the page. I think I know how to do this with dash using the html.Div object, but I was wondering if there was an easy way to do this using only plotly?

推荐答案

因此,总而言之,我还没有找到纯粹使用plotly进行此操作的方法.下面是我使用Dash进行此操作的代码,该代码运行良好:

So, in conclusion, I have not found a way to do this purely with plotly. Below is my code for doing this with Dash, which has been working quite well:

第1步:绘制一些情节图

Step 1: make a few plotly plots

import plotly.offline as pyo
import plotly.graph_objs as go
import plotly as py
fig1 = go.Scatter(y=[1,2,3])
fig2 = go.Scatter(y=[3,2,1])
plots = [fig1, fig2]

第2步:制作破折号Div对象:

Step 2: Make dash Div objects:

app = dash.Dash()
layout = html.Div(
        [html.Div(plots[i], style=col_style[i]) for i in range(len(plots))],
        style = {'margin-right': '0px'}
    )

第3步:运行破折号

app.layout = layout
app.run_server(port=8052)

这篇关于1页上的多个绘图图,无子图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆