Hi Webix Support Team,
Check the image. I’ve annotated the issue that we are facing
Hi Webix Support Team,
Check the image. I’ve annotated the issue that we are facing
Hello, @harpreet
There is a possibility to change the size of the first column. For this, please, use the code below, to [get pivot datatable object].(https://docs.webix.com/pivot__customization.html#gettingdatatableobject).
var datatable = $$("pivot").$$("data");
~~
Then you could use any of the datatable events or API methods. For example, you could act in the following way:
let configF = datatable.getColumnConfig(“name”);
configF.width = 650;
datatable.refreshColumns();
Please, check the snippet here: https://snippet.webix.com/s13vvo0w