Grid Bug: "height" field in data will affect the grid row height

If the grid data contains the “height” field, this will affect the grid row height.

https://snippet.dhtmlx.com/ju9pgrw6

Hello.

This is the expected and designed behavior. It is mentioned here:

  1. 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.