Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can any 1 tell em how to overlap a canvas with another canvas ..? i am assigning the same width and height of 1st canvas but it's width getting some extra.can any 1 help me ?

<head>
    <title> Vivace Sonics</title>
    <style type="text/css">

    div#canvasdiv
    {   
        padding-left:3%;
        background-color:cyan;
        border:1px solid black;
    }
    #graph2{
        padding-left:3%;
        position:absolute;
        left:4%;
        top:9%;
    }

    </style>

    <script type="text/javascript">

function resize_canvas(){ var canvas = document.getElementById("graph");

        if (canvas.width  < window.innerWidth*0.7)
        {
            canvas.width  = window.innerWidth*0.7;
        }

        if (canvas.height < window.innerHeight*0.7)
        {
            canvas.height = window.innerHeight*0.7;
        }
        var canvas2 = document.getElementById("graph2");
        canvas2.width=canvas.width;
        canvas2.height=canvas.height;

    }
       function drawGraph(dataSize,minvalue,maxvalue,values) {
            resize_canvas();  

}

</head>
<body bgcolor="#c0c0c0" onload=callRestService()>

    <div id="canvasdiv">
  <h3>  <p id="graphtitle" align="center" > Graph Title</p></h3>
    <div id="yaxisdiv"><p id="yaxis"> Y-axis</p></div>
    <canvas id="graph" style="border:1px solid gray;"  > 
    </canvas>
    <canvas id="graph2"  style="border:1px solid green;"  onmousemove=showCursor() onmousedown=getcoordinatesone() onmouseup=getcoordinatestwo()> 
    </canvas>       
    <p id="xaxis" align="center"> X-axis</p>
    <p id="mouseAT">MouseAt:</p>
    <p id="mouseAT2">MouseAt:</p>
    </div>
    <div id="btnsdiv">
    <button type="button" > FFT </button><br/>
    <button type="button" > Power </button><br/>
    <button type="button" > Amp </button><br/>
    <button type="button" > Filters </button><br/>
    <button type="button"  onclick=scalling()> ZoomOut </button><br/>
    <button type="button" > ZoomIn </button><br/>
    <button type="button" onclick=drawVerticalBar()> vertical bar </button><br/>
    <button type="button" onclick=drawHorizantalBar()> Harizantal bar </button><br/>
    <button type="button" onclick=drawBothBars()> ver&horz bars </button><br/>
    </div>

</body>
share|improve this question
can you paste in the code you have so far? – Neil May 17 '12 at 12:24
actually i am doing some operations on graph...i need exactly overlap one canvas with another 1 – Ryada May 17 '12 at 12:38
I think the best way to help you is if you can go on jsfiddle.net and create something that we can edit just hardcode your data – Neil May 17 '12 at 12:40
can u tell me few of html5 designing tools...? – Ryada May 17 '12 at 12:49
problem soved by adding this in css .border {border: 1px solid red;} .absolute {position:absolute;} and <canvas id="graph" style="border:1px solid gray;" class="border absolute" > </canvas> <canvas id="graph2" style="border:2px solid red;" class="border absolute"></canvas> – Ryada May 17 '12 at 14:25

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.