Javascript InfoVis Spacetree单个节点样式

时间:2011-04-01 21:29:20

标签: javascript coding-style infovis thejit space-tree

我是javascript编码的新手 - 任何人都可以帮助我InfoVis Spacetree吗?我试图将某个节点级别的宽度和高度设置为小于其余节点。好像我把它放在数据中{}但是当我尝试data:{"$height":"30"}时,它会搞砸整棵树......

2 个答案:

答案 0 :(得分:6)

我这样做的方法是将一些信息放在这些特殊节点的数据数组中,然后在绘制时,我只会在这些节点上进行修改。

数据:

var json = 
{
    'id':'id0.0',  
    'name':'Root',  
    'data':
    {
        'mytype':'1'
    }, 

    'children':
    [
        {
            'id':'id1.0',  
            'name':'Node 1.0', 
            'data':
            {
                'mytype':'2'
            }, 

            'children':
            [
                {
                    'id':'id2.0',  
                    'name':'Node 2.0'
                }, 

                {
                    'id':'id2.1',  
                    'name':'Node 2.1'
                }, 

                {
                    'id':'id2.2',  
                    'name':'Node 2.2'
                }
            ]
        }
    ]
};

因此,您可以看到某个节点有一个名为 mytype 的数据元素,您必须在绘制树时注意这些。为此,您必须实现 onBeforePlotNode 功能。此方法对于在绘制节点样式之前更改节点样式非常有用。

以下是处理特殊节点的SpaceTree Creation的代码:

myTree = new $jit.ST({
    //id of viz container element
    injectInto: 'MyGraph',
    orientation: 'top',
    duration: 200,
    transition: $jit.Trans.Quart.easeInOut,
    levelDistance: 50,


    //enable panning
    Navigation: 
    {
      enable:true,
      panning:true,
      zooming:20
    },


    //set node and edge styles
    //set overridable=true for styling individual
    //nodes or edges
    Node: {
        overridable: true,  
        autoWidth: true,  
        autoHeight: true,  
        type: 'rectangle'  
    },

    Edge: {
        type: 'bezier',
        overridable: true
    },


    onBeforePlotNode: function(node)
    {
        //if(node.data.class == 'node') 
        if(node.data.mytype == '2') 
        {
            node.data.$height = 60;                    
        }
    },
});

您可以看到OnBeforePlotNode正在查看节点的数据以查看它是否是特殊数据。然后,您只能修改这些节点。

答案 1 :(得分:0)

设置offSetX和offSetY位置,如下所示:

var st = new $jit.ST({
    'injectInto': 'infovis',
    //set duration for the animation
    duration: 800,
    //set animation transition type
    transition: $jit.Trans.Quart.easeInOut,
    //set distance between node and its children
    levelDistance: 50,
    //set max levels to show. Useful when used with
    //the request method for requesting trees of specific depth
    levelsToShow: 4,
    orientation: 'top',
    align: 'center',
    //set node and edge styles
    //set overridable=true for styling individual
    //nodes or edges 
    offsetX: 0, offsetY: 110,
    Node: {
        height: 30,
        width: 31,
        //use a custom
        //node rendering function
        type: 'nodeline',
        color: '#f76b14',
        lineWidth: 1,
        align: "center",
        overridable: true
    },

infovis div,即持有spacetree的div不会有时显示整个图形。 在onComplete事件中添加以下代码就可以了。

这将设置div的高度以适应整个图形。 我使用的方向是“顶部”。

onComplete: function () {
        var LastnodeTop = 0;
        $("div.node").each(function () {
            var pos = $(this).position();
            if (pos.top > LastnodeTop)
                LastnodeTop = pos.top;
        });
        var LastnodeTopStr = LastnodeTop.toString();
        LastnodeTopStr = LastnodeTopStr.substring(0, 4);
        var LastnodeTopInt = parseInt(LastnodeTopStr) + 100;            
        $("#infovis").attr("style", "height:" + LastnodeTopInt + "px");
    }

感谢。