Hi,
I am using firefox 2.0 and while creating graph, sometime, arrow head image (end connector) is coming slightly above the connector . (as such misalignment of the image). This behaviour doesnt happen always. I dont know what is the reason. i have uploaded the image of graph where i had this problem, on bug report section for this project. Please look onto that also..
regards
chinmay
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
I am using firefox 2.0 and while creating graph, sometime, arrow head image (end connector) is coming slightly above the connector . (as such misalignment of the image). This behaviour doesnt happen always. I dont know what is the reason. i have uploaded the image of graph where i had this problem, on bug report section for this project. Please look onto that also..
regards
chinmay
Hi, found the same thing. What solved it for me -
Setting the main canvas css visibility: hidden initially and back to visible after initPageObjects(). First part of code :
.
.
.
<style>
mainCanvas {
visibility: hidden;
}
</style>
<script>
function initGraphCanvas() {
initPageObjects();
$('#mainCanvas').css('visibility','visible'); //JQuery
}
</script>
</head>
<body onload="initGraphCanvas()">
.
.
.