代码之家  ›  专栏  ›  技术社区  ›  rahlf23

Plotly graph组件无法接受视口单位来设置文字注释字体大小

  •  8
  • rahlf23  · 技术社区  · 6 年前

    我使用的是Plotly Dash,需要文本注释的字体大小与视口宽度成比例,就像我的图形一样。对于布局中的各种标题,我可以直接设置 font-size: '1vw' 然而 vw 不是用于设置的可接受单位 font-size 对于 style dcc.Graph 组成部分以下是相关的回溯:

    值错误: 为scatter.textfont的“size”属性接收到无效元素 无效元素包括:['1vw','1vw','1vw','1vw','1vw','1vw','1vw','1vw','1vw','1vw']

    The 'size' property is a number and may be specified as:
      - An int or float in the interval [1, inf]
      - A tuple, list, or one-dimensional numpy array of the above
    

    我想如果 组件可以接受视口单位(例如。 style = {height: 30vw, width: 30vw} )只需将它们转换为浏览器端的像素,我就可以用 字体大小

    Python端是否有一种方法可以检索以像素为单位的视口宽度,以便我可以对字体大小执行自己的缩放逻辑?

    下面是演示此行为的Dash应用程序示例:

    import dash
    from dash.dependencies import Input, Output
    import dash_core_components as dcc
    import dash_html_components as html
    import plotly.graph_objs as go
    
    labels = {'Point 1': (3.5,5), 'Point 2': (1.5,2), 'Point 3': (3.5,8)}
    
    app = dash.Dash(__name__)
    
    app.layout = html.Div([
    
        html.H1('Test', id='test', style={'margin': 50}),
    
        dcc.Graph(id='my-plot', style={'margin': 10}),
    
    ])
    
    @app.callback(
        Output('my-plot', 'figure'),
        [Input('test', 'children')])
    def update_graph(val):
    
        return {
    
            'data': [go.Scatter(
                x=[v[0]],
                y=[v[1]],
                text=k,
                mode='text'
            ) for k, v in labels.items()],
    
            'layout': go.Layout(
                margin={'l': 40, 'b': 40, 't': 40, 'r': 40},
                shapes=[
                    {
                        'type': 'path',
                        'path': ' M 1 1 L 1 3 L 4 1 Z',
                        'fillcolor': 'rgba(44, 160, 101, 0.5)',
                        'line': {
                            'color': 'rgb(44, 160, 101)',
                        }
                    },
                    {
                        'type': 'path',
                        'path': ' M 3,7 L2,8 L2,9 L3,10, L4,10 L5,9 L5,8 L4,7 Z',
                        'fillcolor': 'rgba(255, 140, 184, 0.5)',
                        'line': {
                            'color': 'rgb(255, 140, 184)',
                        }
                    },
                ]
            )
        }
    
    if __name__ == '__main__':
        app.run_server()
    
    2 回复  |  直到 6 年前
        1
  •  3
  •   John Moutafis Milani Igor    6 年前

    从我环顾四周所了解的情况来看,没有一种方法可以只用 plotly-dash . 您需要实现的基本上是“响应式”排版,这是一个主题,其中有一些非常有趣的文章:

    Dash提供了 option to override the default CSS and JS 你可以从 layout documentation

    我的建议是: 研究生成的页面,找出文本注释是如何被标记的( id 和/或 class


    编辑(评论和问题编辑后):

    既然文本注释具有类 textpoint override the default CSS :

    1. 创建建议的文件夹结构:

      - app.py
      - assets/
      |--- typography.css
      
    2. typography.css

      .textpoint{
          font-size: calc(14px + (26 - 14) * ((100vw - 300px) / (1600 - 300)));
      }
      

    编辑#2:

    我发现了问题和解决方法:

    • 在破折号版本上添加自定义CSS的方法>=0.22确实是上面提到的,它是有效的。
    • 为了将自定义规则应用于注释,我们需要针对的元素是 text 标签内的 .textpoint 类(CSS语法: .textpoint text )
    • 出于某种原因,自定义CSS规则被覆盖(可能是出于类似的原因,在本文的顶部答案中解释: custom css being overridden by bootstrap css ).所以我们需要“核”选项 !important .

    排版 应该是这样的:

    .textpoint text{
      font-size: calc(14px + (26 - 14) * ((100vw - 300px) / (1600 - 300))) !important;
    }
    
        2
  •  0
  •   bkirthi    6 年前

    错误消息说您应该将尺寸作为 int 对象 int 并将其保存在另一个变量下 width & height vw

    from PySide import QtGui
    #replace that with "from PyQt4 import QtGui" if you're using PyQt4
    
    app = QtGui.QApplication([])
    screen_resolution = app.desktop().screenGeometry()
    width = int(screen_resolution.width())
    height = int(screen_resolution.height())
    

    我不知道你在用什么代码,所以我还没有试过。让我知道它是否适合你。

    推荐文章
    pilu  ·  Plotly Dash API文档
    6 年前