veg / phylotree.js

Interactive viewer of phylogenetic trees
http://phylotree.hyphy.org
MIT License
169 stars 71 forks source link

making node font size a configurable option #443

Closed stevenweaver closed 8 months ago

stevenweaver commented 10 months ago

Addresses #439

New option font-size must be a number due to compatibility issues. It is always set in px.

It is configured like so:

        tree.render({
          container: "#tree_container",
          "draw-size-bubbles": false,
          "bubble-styler": d => { return 5 },
          "node-styler": node_colorizer,
          "font-size": 12,
          zoom: false,
          "edge-styler": edge_colorizer
        });