How to render DotML

后端 未结 1 731
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-23 09:20

How do I render DotML into a chart? According to the website here:

Getting graphs from your data is a three-step process. First, generate or manually type

1条回答
  •  有刺的猬
    2021-01-23 09:48

    DotML is an alternative XML-based syntax for the dot language used to drive the GraphViz program. The normal way of using it is to convert the DotML to dot, and then run GraphViz to generate SVG. The way I do it (from Ant) is here:

      
        
          
            
          
          
          
            
      
    
      
        
          
            
              
            
          
        
      
    
      
        
        
        
        
        
          
        
    
           
      
    

    My case is a bit different because I'm starting with a document that contains multiple diagrams in an XML vocabulary that first needs to be transformed to DotML.

    0 讨论(0)
提交回复
热议问题