gpt4 book ai didi

plotly-dash - 禁用 DashTable 中事件单元格的突出显示

转载 作者:行者123 更新时间:2023-12-02 04:24:16 29 4
gpt4 key购买 nike

如何停止在破折号数据表中突出显示的事件单元格(最后单击的单元格)?

enter image description here

最佳答案

按照 dash 论坛 ( https://community.plotly.com/t/remove-or-change-hotpink-selection-from-datatable/26168/4 ) 中的建议,您应该能够将自定义 css 文件添加到项目的 Assets 文件夹中。
我通过将值设置为透明来完全删除突出显示

.dash-spreadsheet-container .dash-spreadsheet-inner table {
border-collapse: collapse;
font-family: monospace;
--accent: transparent !important;
--border: transparent !important;
--text-color: transparent !important;
--hover: transparent !important;
--background-color-ellipses: transparent !important;
--faded-text: transparent !important;
--faded-text-header: transparent !important;
--selected-background: transparent !important;
--faded-dropdown: transparent !important;
--muted: transparent !important;
}

====================== 2020 年 10 月更新 ======================
现在可以通过在创建数据表时包含以下条件样式来实现
        style_data_conditional=[                
{
"if": {"state": "selected"},
"backgroundColor": "inherit !important",
"border": "inherit !important",
}

关于plotly-dash - 禁用 DashTable 中事件单元格的突出显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56363437/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com