在 Plotly Timeseries Chart 中更改时间刻度按钮的 CSS 样式
Posted
技术标签:
【中文标题】在 Plotly Timeseries Chart 中更改时间刻度按钮的 CSS 样式【英文标题】:Change CSS style of timescale buttons in Plotly Timeseries Chart 【发布时间】:2020-10-04 12:55:47 【问题描述】:我对 Dash/Plotly 很陌生,我正在尝试使用 CSS 设置时间刻度按钮的样式,但似乎没有一个类对我应用的样式做出反应。我有类似的东西:
Plotly Time Series Chart
https://plotly.com/python/time-series/
我的目标是用圆角使按钮更大、更暗。通常我会这样做:
button
margin-left: 15px;
margin-right: 15px;
height: 45px;
width: 70px;
border-radius: 10%;
color: white;
font-weight: bold;
background-color: #80848d;
但在这种情况下,按钮似乎有一个标签和一个预先设置样式的选择器矩形类。 到目前为止,有人设法解决了这个问题吗?
【问题讨论】:
【参考方案1】:您可以使用预先设置样式的同一类来覆盖您的样式,并为您的样式添加!important
:
.class-pre-styled
margin-left: 15px!important;
margin-right: 15px!important;
希望对你有帮助!
【讨论】:
以上是关于在 Plotly Timeseries Chart 中更改时间刻度按钮的 CSS 样式的主要内容,如果未能解决你的问题,请参考以下文章
R语言plotly可视化:plotly可视化在对比条形图中添加误差条(Bar Chart with Error Bars with plotly in R)
plotly同时可视化表格与图(plotly Table and Chart )
ImportError: The plotly.plotly module is deprecated,please install the chart-studio
R-plotly|交互式甘特图(Gantt chart)-项目管理/学习计划
Plotly Sunburst Chart (Python) - make_subplots 的“specs”参数必须是具有维度 (1 x 1) 的二维字典列表