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>