We are developing a custom api.
When grouped based on a row, the calculated values for 'a' and 'null' come in response.
However, Flex Monster overwrites 'a' to the value of 'null'.
Therefore, the expand operation performed when 'a' is pressed sets the
filter.member.include part to 'null', not 'a'
I want both 'a' and 'null' to be rendered on the screen.
Hello,
Thank you for reaching out to us.
As for the issue with setting the value of "null" to the "a" value, this is caused by null
IDs defined in the /members
response. We have described this matter in more detail in your previous ticket: https://www.flexmonster.com/question/the-pivot-table-does-not-show-all-field-values/#answer-74724
To show empty members on the grid, we suggest following these steps:
null
value:"members": [{
"value": "green"
},{
"value": "blue"
},{
"value": null
}]
/select
response, return the "keys"
object with member value set to an empty string:"values": {
"Price": {
"sum": 679804
}
},
"keys": {
"Color": ""
}
We are looking forward to hearing your feedback.
Best Regards,
Maksym