vue-network-d3 icon indicating copy to clipboard operation
vue-network-d3 copied to clipboard

Size 1:1

Open lcottret opened this issue 5 years ago • 1 comments

Hi,

Thanks for this very useful component ! I have a quite large network to display and I didn't success to display at scale 1:1 in the parent window. Is it possible with your component ?

Regards, LC

lcottret avatar Aug 28 '20 13:08 lcottret

Sorry to reply so late. Have you tried prop svgSize?

svgSize: {
    type: Object,
    default: () => {
      return {
        width: window.innerWidth,
        height: window.innerHeight
      };
    }
 }

yulei-chen avatar Nov 19 '20 06:11 yulei-chen