Skip to content

Commit

Permalink
set default font for treeview
Browse files Browse the repository at this point in the history
  • Loading branch information
bmesuere committed Jun 13, 2018
1 parent 15e042b commit 161f137
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/treeview/treeview.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ export default function TreeView(element, data, options = {}) {
.attr("viewBox", `0 0 ${settings.width + MARGIN.right + MARGIN.left} ${settings.height + MARGIN.top + MARGIN.bottom}`)
.attr("width", settings.width + MARGIN.right + MARGIN.left)
.attr("height", settings.height + MARGIN.top + MARGIN.bottom)
.style("font-family", "'Helvetica Neue', Helvetica, Arial, sans-serif")
.call(zoomListener)
.append("g")
.attr("transform", `translate(${MARGIN.left},${MARGIN.top})`)
Expand Down

0 comments on commit 161f137

Please sign in to comment.