Need a special offer?Find out if your project fits.
+

Flexmonster data table height adjustment

Answered
raviteja asked on July 12, 2022

Hi , I would like to increase height of Flexmonster since I can see lot of empty space down the table I wanted to increase size of flexmonster so that it will correctly fit into the screen.

Attachments:
fm-height.PNG

1 answer

Public
Nadia Khodakivska Nadia Khodakivska Flexmonster July 12, 2022

Hello,

Thank you for reaching out to us.

We recommend setting the height property to "100%". For example,

let pivot = new Flexmonster({
  container: "pivot-container",
  width: "100%",
  height: "100%",
  ...
});

For the pivot table's height to fill the space, the parent's height must be 100%. Therefore, add the following CSS:

.wrapper {
  height: 100%;
  margin: 0;
}

Please let us know if it works for you. Feel free to contact us in case further questions arise.

Kind regards,
Nadia

Please login or Register to Submit Answer