VML+XML绘制树型图表(Create a Tree Graph by VML+XML)

本文介绍了一种利用VML(Vector Markup Language)将XML数据转换为可视化图表的方法。通过解析XML文件中的组织结构信息,并使用VML定义的矢量图形来展示这些信息,实现了组织结构图的动态生成。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

VML(Vector Markup Language) is an application of Extensible Markup Language (XML) 1.0 which defines a format for the encoding of vector information together with additional markup to describe how that information may be displayed and edited.

 

code is pick from internet, connect me if you are the author, Thanks.

 

 

ContractedBlock.gifExpandedBlockStart.gifdata.xml
<?xml version="1.0" encoding="utf-8"?>
<Company>
  
<Manager>
    
<DepartMentA>
      
<StafferA1 />
      
<StafferA2 />
      
<StafferA3 />
    
</DepartMentA>

    
<DepartMentB>
      
<StafferB1 />
      
<StafferB2 />
      
<StafferB3 />
    
</DepartMentB>

    
<DepartMentC>
      
<StafferC1 />
      
<StafferC2 />
      
<StafferC3 />
    
</DepartMentC>
  
</Manager>
</Company>

 

 

ContractedBlock.gifExpandedBlockStart.gifvml.htm
<html xmlns:v="urn:schemas-microsoft-com:vml">
<head>
<META HTTP-EQUIV="MSThemeCompatible" CONTENT="Yes">
<style type="text/css">
    v\:*
{
        behavior
:url(#default#VML);
    
}
    
    v\:RoundRect
{
        text-align
:center;
        position
:relative;
    
}
    
    v\:TextBox
{
        vertical-align
:middle;
        font-size
:13px;
    
}
</style>
    
<script type="text/javascript">
function $(id){
    
return document.getElementById(id);    
}

function Point2D(x,y){
    
this.x = x;
    
this.y = y;    
}

function Xml2Vml(xmlFile){
    
this.XML = new ActiveXObject("MSXML2.DOMDocument.5.0");
    
this.XML.async=false;
    
this.XML.load(xmlFile);
    
this.SpanX = 10;
    
this.SpanY = 25;
    
this.ItemWidth = 100;
    
this.ItemHeight = 25;
    
this.VmlRoot = document.createElement('<v:group coordsize="1000,1000" id="vml" style="width:1000px;height:1000px;">');
}

Xml2Vml.prototype.RecursiveParse 
= function(rootNode,offset){
    
var allChild = rootNode.childNodes;
    
var xOffset = offset.x;
    
var yOffset = offset.y;
    
if(allChild.length==0){
        rootNode.setAttribute(
"LeftX",xOffset);
        rootNode.setAttribute(
"RightX",xOffset+this.ItemWidth);
        xOffset 
+= this.SpanX + this.ItemWidth;
    }
else{
        
for(var i=0;i<allChild.length;i++){
            
var w = this.RecursiveParse(allChild[i],new Point2D(xOffset,yOffset+2*this.SpanY+this.ItemHeight));
            xOffset 
+= this.SpanX + w;
        }
        rootNode.setAttribute(
"LeftX",(parseInt(allChild[0].getAttribute("LeftX")) + parseInt(allChild[0].getAttribute("RightX")))/2);
        rootNode.setAttribute("RightX",(parseInt(allChild[allChild.length-1].getAttribute("LeftX")) + parseInt(allChild[allChild.length-1].getAttribute("RightX")))/2);
    }
    rootNode.setAttribute(
"PosY",yOffset);
    
return xOffset-offset.x-this.SpanX;
}

Xml2Vml.prototype.ParseXml 
= function(){
    
this.RecursiveParse(this.XML.documentElement,new Point2D(0,0));    
}

Xml2Vml.prototype.RecursiveRender 
= function(xmlNode){
    
var allChild = xmlNode.childNodes;
    
var xl = xmlNode.getAttribute("LeftX");
    
var xr = xmlNode.getAttribute("RightX");
    
var x = (parseInt(xl)+parseInt(xr))/2;
    var y = xmlNode.getAttribute("PosY");
    
var str = xmlNode.tagName;

    
if(xmlNode!=this.XML.documentElement) this.VmlRoot.appendChild(document.createElement('<v:line from="'+x+','+y+'" to="'+x+','+(parseInt(y)+this.SpanY)+'" />'));
    y
=parseInt(y)+this.SpanY;
    
var RoundRect = document.createElement('<v:RoundRect style="width:'+this.ItemWidth+'px;height:'+this.ItemHeight+'px;left:'+(x-this.ItemWidth/2)+'px;top:'+y+'px" align="center">')
    RoundRect.appendChild(document.createElement('<v:shadow on="True" type="single" color="#b3b3b3" offset="5px,5px"/>'));
    
var TextBox = document.createElement('<v:TextBox />');
    TextBox.innerHTML 
= str;
    RoundRect.appendChild(TextBox);
    
this.VmlRoot.appendChild(RoundRect);
    
    
if(allChild.length>0){
        y 
+= this.ItemHeight+this.SpanY;
        
this.VmlRoot.appendChild(document.createElement('<v:line from="'+x+','+(y-this.SpanY)+'" to="'+x+','+y+'" />'));
        xl 
= (parseInt(allChild[0].getAttribute("LeftX")) + parseInt(allChild[0].getAttribute("RightX")))/2;
        xr = (parseInt(allChild[allChild.length-1].getAttribute("LeftX")) + parseInt(allChild[allChild.length-1].getAttribute("RightX")))/2;
        this.VmlRoot.appendChild(document.createElement('<v:line from="'+xl+','+y+'" to="'+xr+','+y+'" />'));
        
for(var i=0;i<allChild.length;i++this.RecursiveRender(allChild[i]);
    }
}

Xml2Vml.prototype.RenderVml 
= function(){
    
this.RecursiveRender(this.XML.documentElement);    
}

</script>
</head>

<body>

<center>
    
<div id="div" style="WIDTH: 1000px; HEIGHT: 1000px"></div>
</center>

<script type="text/javascript">
var Ins = new Xml2Vml("data.xml");
Ins.ParseXml();
Ins.RenderVml();
$(
"div").appendChild(Ins.VmlRoot);
</script>

</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值