gpt4 book ai didi

jquery - 为数据透视表添加响应

转载 作者:行者123 更新时间:2023-11-28 08:51:29 25 4
gpt4 key购买 nike

我一直在我的一个应用程序中使用 ( http://nicolas.kruchten.com/pivottable) pivottable.js。该表已呈现良好,但我在向我的 UI 添加响应能力时遇到问题。该表不会缩小到使用媒体查询为小视口(viewport)定义的 div 大小。无论视口(viewport)如何,表格始终以相同大小绘制。此外,表格列的宽度似乎是不可更改的。我试图更改 pivot.css 中为 col 定义的类,但这似乎没有用。

table.pvtTable .pvtColLabel {text-align: center; width:50px;}
table.pvtTable .pvtTotalLabel {text-align: right; width: 50px;}

另外下面是我如何在绘制表格的“图形”类的 div 上使用媒体查询:

@media (min-width: 320px) and (max-width: 640px) {

/*Making gray box span across the screen*/
body {
padding-left: 0px; /*changed to avoid hz scroll on mobile device*/
padding-right: 0px; /*changed to avoid hz scroll on mobile device*/
padding-top: 0px;
}
#console {
/* Negative indent footer by it's height */
margin: 0px auto -40px;
}
.graph {
width:250px;
height:270px;
}
.wrapper-gray{
background-color: #ebebeb;
padding: 5px;
}


.section-box{
background-color: #fff;
padding: 5px;
}
}

如果我哪里出错了,请指导我。

最佳答案

图表的尺寸在创建时固定,并通过 PivotUI 的 renderOptions 参数控制。例如:

rendererOptions: {
c3: {
size: { height:200, width:200}
}
}

来源:Issue 487

关于jquery - 为数据透视表添加响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29802658/

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