How to resize a scrolling table height more the 9999

Hi
I was try to resize the scrolling table height more than 9999 but it is not permitting to do

What did you try?

I was given the resize functionality to the scrolling table.
It contains 900 rows. when i tried to resize the table to visible all rows.
it is not able to resize more than 9999 height

The default value for ResizingTool.maxSize is 9999x9999.

When you initialize your diagram, you could say something like:

$(go.Diagram, "myDiagramDiv",
  { . . .
    "resizingTool.maxSize": new go.Size(10000, 20000),
    . . .  })

How to assign infinity values to the maxsize

Use Infinity.