ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: vijay@spinetechnologies on May 23, 2023, 07:41:17 pm
-
Can we pivot text value instead of sum or count in pivot
Please find attach file expected result.png
Source data and expected result are mention in that.
-
can you please share sample data so that I check its feasibility.
-
please find the attached text file which contains JSON data
-
as in previous file date was not in proper format
-
Thanks for the JSON data. Yes, it works.
First define custom aggregate, you can name it anything.
pq.aggregate.custom = function( arr ){
return arr[ 0 ];
}
Then use that custom aggregate in groupModel:
var groupModel = {
on: true, //grouping mode.
pivot: true, //pivotMode
titleIndx: 'Employee Name',
groupCols: ['Date'], //grouping along column axis.
agg:{ //aggregate fields.
DayType: 'custom'
},
header: false, //hide grouping toolbar.
dataIndx: ["Employee Name"], //grouping along row axis.
summaryEdit: false
};