If the grid data contains the “height” field, this will affect the grid row height.
Hello.
This is the expected and designed behavior. It is mentioned here:
- Starting with v7.1, you can specify the height for the necessary row of data via setting the number value to the height option when defining the data set:
const dataset = [
{
"country": "China",
"population": "1415045928",
"height": 80,
"id": "1" },
{
"country": "India",
"population": "1354051854",
"id": "2",
}
];
Ok, thanks, that’s great.