Hi there
I have two xamTiles, Tile1 contains Chart and Tile2 contains GridControl, when I select DataPoints in Chart my grid is refreshed with new data, the issue is that after each grid refresh my Tile2 get randomly resized height.
Also note if I set size manually by dragging gridsplitter this issue (random size changes) disappears.
Any idea to make tile height remain the same unless I manually resize it.
Thanks
Actually here is the sample project that demonstrates my issue
I think I solved my problem just needed to set PreferedHeight and PreferedWidth to tile like so:
XamTileManager.SetConstraints(tile, new TileConstraints { PreferredWidth = 300, PreferredHeight = 300 });