block by EE2dev 0d687558719ff3f4f73645d01a123a39

hierarchy explorer API examples

Full Screen

API examples for hierarchy explorer


myChart.linkHeight()

This example shows how to set the height of the links.


Acknowledgements:

index.html

<!DOCTYPE html>
  <meta charset="utf-8">
  <head>
    <script src="https://d3js.org/d3.v5.min.js"></script>
    <script src="https://cdn.jsdelivr.net/gh/EE2dev/hierarchy-explorer/dist/v10/hierarchyExplorer.js"></script>
    <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/EE2dev/hierarchy-explorer/dist/v10/hierarchyExplorer.css">
  </head>
  
  <body>
    <!-- paste data in aside tag -->
    <aside id="data">
    </aside>
      
    <script>
      const dataSpec = {
        source: "https://cdn.jsdelivr.net/gh/EE2dev/hierarchy-explorer/test/data/flare.json",
        key: "name",
      };
      const myChart = hierarchyExplorer.chart(dataSpec)
        .propagateValue("size")
        .linkHeight(15) 
      ;

      showChart(); 
      
      window.setTimeout(function() {
        myChart.linkWidth(100);
      }, 2000);
      
      function showChart() {
        const selection = d3.select("body")
          .append("div")
          .attr("class", "chart");
        selection.call(myChart);
      }         
    </script>
  </body>
</html>