前言:
今天兄弟们对“c语言如何改变背景颜色”大体比较着重,大家都想要了解一些“c语言如何改变背景颜色”的相关知识。那么小编同时在网摘上收集了一些对于“c语言如何改变背景颜色””的相关资讯,希望咱们能喜欢,朋友们快快来了解一下吧!模块 dash.html 包含所有 HTML 标签, 可以用其设置文本及背景颜色.
模块 dash.dcc 包含交互的高级组件.
代码
import pandas as pdimport plotly.express as pxfrom dash import Dash, html, dccapp = Dash() # 初始化 Dash# 预设样式colors = { 'background': '#7fffec', # 背景颜色 'text': '#7FDBFF' # 文字颜色}df = pd.DataFrame({'x': [1, 2, 3], 'SF': [4, 1, 2], 'Montreal': [2, 4, 5]}) # 原始数据: 'SF'和'Montreal'fig = px.bar(df, x='x', y=['SF', 'Montreal'], barmode='group') # 柱状图# 更新柱状图样式: 设置背景颜色及文本颜色fig.update_layout( plot_bgcolor=colors['background'], paper_bgcolor=colors['background'], font_color=colors['text'])app.layout = html.Div( style={'backgroundColor': colors['background']}, # 设置全局样式 children=[ html.H1( children='Hello Dash', style={ 'textAlign': 'center', # 文本对齐方式 'color': colors['text'] # 文本内容 } ), html.Div( children='Dash: 一款Python web应用框架', style={ 'textAlign': 'center', # 文本对齐方式 'color': colors['text'] # 文本内容 } ), dcc.Graph( id='dash-example-graph-colored', figure=fig ) ])if __name__ == '__main__': app.run_server(debug=True)结果
版权声明:
本站文章均来自互联网搜集,如有侵犯您的权益,请联系我们删除,谢谢。
标签: #c语言如何改变背景颜色