-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To bold the base #52
Comments
One quick way is to set the defaults before plotting: import matplotlib as mpl
mpl.rc('xtick', labelsize=15)
mpl.rc('font', weight='bold') # this, however, changes all text Alternatively, if you save your figure, then you can modify it: ax, _ = record.plot()
ax.set_xticklabels(ax.get_xticklabels(), fontdict={'weight':'bold'}, fontsize=20)
ax.figure |
Thanks veghp!! |
Hi Veghp, How do i increase the fontsize of the feature label. for example: small feature, Gene1 with a very long name. Thanks! |
Hi, not sure which is the best approach, but the options for changing the font size are
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
How to bold or increase the text size for the sequence position number
Thanks!
The text was updated successfully, but these errors were encountered: