2017-02-17 126 views

回答

2

你确定是因为列数?我遇到了同样的问题,解决方法是取消每列的固定选项。

例如,如果你有这样的:

{headerName: "Athlete", field: "athlete", width: 150, pinned: 'left'} 

它必须是:

{headerName: "Athlete", field: "athlete", width: 150} 
+0

嘿谢谢。我也使用固定选项。根据你的建议我脱下固定选项,它的作品。感谢洛特。 –

0

确保您有没有登上gridOptions对象设置为true suppressHorizo​​ntalScroll财产你有吗?

var gridOptionsTop = { 
    columnDefs: columnDefs, 
    // don't show the horizontal scrollbar on the top grid 
    suppressHorizontalScroll: false, 
    enableSorting: true, 
};