Skip to content

Commit

Permalink
Apply element font size, fixes bdargan#22
Browse files Browse the repository at this point in the history
  • Loading branch information
markhobson committed Dec 10, 2018
1 parent 0095fc8 commit e588418
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion radar.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@ for (var i = 0; i < radar_data.length; i++) {
.angle(45)
.anchor("right")
.add(pv.Label)
.text(function(d) {return radar_quadrant_ctr++ + ". " + d.name;} );
.text(function(d) {return radar_quadrant_ctr++ + ". " + d.name;} )
.font(fontSize + "px sans-serif");

radar.add(pv.Dot)
.def("active", false)
Expand Down

0 comments on commit e588418

Please sign in to comment.