1

「JavaScript Infovis」ツールキットを使用しています。「SpaceTree コントロール」は、データの視覚化のニーズに適しています。

「jQuery」を使用して「Ajax」を呼び出し、データをツリーに動的にロードしています。ツリーはよくロードされます。ただし、いずれかのノードをクリックすると、次のエラー メッセージが表示されます。

キャンバスは未定義です

aspx ページからこの Javascript ライブラリを呼び出しています。

$j(document).ready(function() {            
    var aURL = 'CompanyHierarchyList.ashx?CompanyID=<%=CompanyID %>';
    $j.ajax({
        url: aURL,
        cache: false,
        dataType: 'json',
        success: function(json) {
            LoadTree(json);
        }
    });
});


var st = new $jit.ST({
    //id of viz container element
    injectInto: 'infovis',
    //set duration for the animation
    duration: 200,
    //set animation transition type
    transition: $jit.Trans.Quart.easeInOut,
    //set distance between node and its children
    levelDistance: 50,
    //set Orientation
    orientation: 'top',

    //.....
    //set the other properties of node
    //.......

    st.loadJSON(json);
    //compute node positions and layout
    st.compute();
    //optional: make a translation of the tree
    st.geom.translate(new $jit.Complex(-200, 0), "current");
    //emulate a click on the root node.
    st.onClick(st.root);
    //end
}

手がかり..

ありがとう、カーシック

4

1 に答える 1

1

これはhttps://github.com/philogb/jit/issues/34で報告されています。彼らはまた、うまくいくと思われる答えを提供しました。

于 2011-09-04T12:59:05.167 に答える