Menu

misalignment of arrow head image

prabhu_sf
2007-02-12
2014-07-19
  • prabhu_sf

    prabhu_sf - 2007-02-12

    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

     
  • Matt Laub

    Matt Laub - 2014-07-19

    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()">
    .
    .
    .

     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.