Making charts in RaphaelJS that are 100% width?

前端 未结 3 932
忘掉有多难
忘掉有多难 2021-02-14 07:12

I have seen graphs in Flash & stuff that basically adapt nicely to whatever the size of the browser or flexible element they are inside of.... I\'m not really too well verse

3条回答
  •  耶瑟儿~
    2021-02-14 07:20

    This will get you a responsive SVG

    var w = 500, h=500;
    var paper = Raphael(w,h);
    paper.setViewBox(0,0,w,h,true);
    paper.setSize('100%', '100%');
    

提交回复
热议问题