Add data rows to pivot

I am trying to add data array of rows in json format by using

$$(‘pivotTable’).add(data);

No data is added.

Thanks

Hello!
As you work with array of rows the method add,unfortunately, isn’t a good choice.
In this case, it’s better to use <a href = "https://docs.webix.com/api__link__ui.proto_parse.html">parse</a>. As ui.pivot makes an aggregation incoming data, ‘array of rows’ means row data(not new rows in the resulting dataset).
Here is an example: https://webix.com/snippet/12d11218.

Thank you very much. It worked.

I found that in case of addition of data when data already exists, the additional data seems to overwrite the existing row.