Skip to content

Commit

Permalink
tickLabelColor should compile into fill instead of stroke
Browse files Browse the repository at this point in the history
Fix #1561
  • Loading branch information
kanitw committed Oct 1, 2016
1 parent 63dfeb4 commit 9e0eb91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compile/axis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ export namespace properties {
}

if (axis.tickLabelColor !== undefined) {
labelsSpec.stroke = {value: axis.tickLabelColor};
labelsSpec.fill = {value: axis.tickLabelColor};
}

if (axis.tickLabelFont !== undefined) {
Expand Down

0 comments on commit 9e0eb91

Please sign in to comment.