You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The size and other text properties are set starting on line 242 of the current version. It may be interesting to add logic to use a light color for the font on the ordinals where darker does not work. For instance, replacing line 269:
return d3.rgb(theColorScale(i)).darker();
with something like:
if (i ==4 || i==6) { return d3.rgb(#ffffff); }
else return d3.rgb(theColorScale(i)).darker();
Is there a way to change the font size and color of the Task? The black font is unreadable with some of the rectangle colors (brown and dark red)
Thanks!
Jane
The text was updated successfully, but these errors were encountered: