views:

258

answers:

1

html:

 <iframe scrolling="yes" src="svgfile.svg"></iframe>

svgfile.svg:

 <svg width="2636pt" height="2478pt" viewBox="-1 -1 2635 2477" xmlns="...">
     <g id="node1" class="node">....</g>
     ...
 </svg>

This won't show the scrollbar in chrome/ie8...
This was OK in FF...

Other solution not using iframe can be acceptable.
Or just rescaling the whole svg image(bigger than the original page) to fit to the original page might be ok as well.

A: 

I believe the Iframe attribute is scrolling="yes" or "auto" not scrollbar.

Traveling Tech Guy
unfortunately scrolling="yes" didnt work as well. updating the question.
holmes
have you tried scrolling="auto"?
Traveling Tech Guy
scrolling="auto" doesnt work as well
holmes
try setting the width and height of the iframe.
Traveling Tech Guy