Image IE Compatibility

Hi PFB my custom node template:
I have an svg image in it.
When I am loading my diagram in chrome it is working fine but in IE the image is getting cropped. PFA screenshot for your reference.
Can you please guide me where I am going wrong.Untitled

diagram.nodeTemplateMap.add('Node',
    make(go.Node, 'Spot', {
        deletable: false, 
        selectable: false,
       },
       make(go.Picture,{ 
        source: 'assets/images/template.svg', 
        width: 50, 
        height: 50, 
        angle: 0 
       },)
    )
);

You need to make sure the SVG specifies the same size, 50x50 in your case. Please read GoJS Pictures -- Northwoods Software.