|
var pivotObj = new ej.pivotview.PivotView({
dataSourceSettings: {
showHeaderWhenEmpty: false,
}
});
pivotObj.appendTo('#PivotView'); |
Thank you, that did help. I have a follow-up question.
Instead of hiding null - undefined values, would it be possible to show them has an empty string??
If so, how can this be done?
Thanks.
|
var L10n = ej.base.L10n;
L10n.load({
'en-US': {
pivotview: {
null: '',
},
},
}); |
This is perfect! Thank you very much