multiple chartjs in the same page

后端 未结 6 517
隐瞒了意图╮
隐瞒了意图╮ 2021-01-01 11:04

hi i was trying to use chartjs can be found in this link www.chartjs.org

i tried to draw two chart in the same page using the samples code

i created two dif

6条回答
  •  时光取名叫无心
    2021-01-01 11:53

    Use only 1 window.onload

    function myfunc1{
    }
    function myfunc2{
    }
    function start(){
    myfunc1();
    myfunc1();
    }
    window.onload = start(); 
    

    Ref: http://www.htmlgoodies.com/beyond/javascript/article.php/3724571/Using-Multiple-JavaScript-Onload-Functions.htm

提交回复
热议问题