i have a problem while displaying images. I use Picture as below:
$(go.Picture,
{ desiredSize: new go.Size(16, 16), margin: new go.Margin(2,8,2,2)},
new go.Binding(“source”, “source”)
)
if the image dimension is 16x16 then the image is displayed fine. But for bigger dimension, image only be visible when i zoom in (It depends on the initial scale ratio of the graph, with more nodes, more zoom in is required).
I want image always show, do not need graph zoom in. How can I achieve this?