我有一个角度为 6 的 ag-grid,并动态附加了列和数据。现在我想动态对齐标题(在多标题的情况下,父母和孩子)。像第一列标题应该左对齐,其他的将居中对齐。
我尝试设置 cellStyle 和我找到的其他一些选项,但它们都不起作用
我试图像这样实现它:
let headerItem = {
headerName: name,
children: [
{
headerName: name,
field: 'col' + i + '.value',
hide: isHidden,
pinned: pinned,
cellStyle: function (params) {
try {
return {text-align : 'center'};
} catch (e) {
return null;
}
}
}
],
cellStyle: function (params) {
try {
return {text-align : 'center'};
} catch (e) {
return null;
}
}
}
请指导我怎样才能得到这个工作......