I am using Yfiles to to show the overview of the large Graph on the top left of the window. If the Graph is too big it is being cropped from the bottom in the overview div element. Any suggestions how we prevent the cropping of large graph from the overview component.
Asked
Active
Viewed 55 times
1 Answers
1
This indicates that either your content rectangle is not up to date (the overview always uses the contentRect
to determine the bounds of the visible region in the overview), or your graph is that large that the minimumZoom
property prevents the overview from not showing all contents: The default value is 0.0001
, the enforced minimum 0.0000001
, so you can try smaller values if your graph is really millions of units wide/high.

Sebastian
- 7,729
- 2
- 37
- 69