Is there an option to set column width in TableReportView

Hi,

Is there an option to set individual column width in the TableReportView options? We are using an HTML web report with the live report to show search results and need a way to expand a few columns and shrink others to fit in the column values and make them readable. Is there a document that details these options?

I am looking for something below highlighted

 pageContext = new PageContext();

        options = {

          context: pageContext,

          data: {

             id: 198404,

             title: 'Information Report',

            header: false,

            titleBarIcon: 'title-assignments',

            sortBy: 'DataID',

columnswidth:[

                 {

                name: 'org',

                value: "300px"

              },

            sortOrder: 'desc',

            parameters: [

                 {

                name: 'org',

                value: org_val

              },

            

            ]

          }

        };

        tableReportView = new TableReportView(options);

        contentRegion.show(tableReportView);

        pageContext.fetch();

  

      }

Comments

This discussion has been closed.