添加对pivottable的响应

时间:2015-04-22 15:47:24

标签: jquery css pivottable.js

我一直在我的一个应用程序中使用(http://nicolas.kruchten.com/pivottable)pivottable.js。该表已经很好,但我在添加对UI的响应性时遇到了问题。该表不会缩小为使用媒体查询为小视图端口定义的div大小。无论视口是什么,表总是绘制到相同的大小。 表格列的宽度似乎也是不可更改的。我试图在pivot.css中更改col的已定义类,但这似乎没有做到这一点。

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

下面是我如何在div上使用媒体查询" graph"绘制表格的类:

@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;
}
}

如果我在某个地方出错,请指导我。

2 个答案:

答案 0 :(得分:1)

图表的维度在创建时固定,并通过数据透视的renderOptions参数进行控制。例如:

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

来源:Issue 487

答案 1 :(得分:0)

有一个扩展库NReco Javascript Pivot Table,它使用PivotTable.js和Bootstrap。