I am trying to change the font size of the name of an existing legend on a pink or "polar" plot. Most of the code was written by someone else who left. I added: -
ax.legend(title=legend_title) setp(l.get_title(), fontsize=8)
to add the header "legend_title", which is a variable that the user enters into a string for another function that uses this code. The second line of this does not return an error, but it seems to do nothing either. The full code is given below. "Rose" and "RoseAxes" are modules / functions written by someone. Does anyone know how to change the font size of the legend name? I found some examples for ordinary plots, but I can not find them for roses / polar plots.
from Rose.RoseAxes import RoseAxes from pylab import figure, title, setp, close, clf from PlotGeneration import color_map_xml fig = figure(1) rect = [0.02, 0.1, 0.8, 0.8] ax = RoseAxes(fig, rect, axisbg='w') fig.add_axes(ax) if cmap == None: (XMLcmap,colors) = color_map_xml.get_cmap('D:/HRW/VET/HrwPyLibs/ColorMapLibrary/paired.xml',255) else: XMLcmap = cmap bqs = kwargs.pop('CTfigname', None) ax.box(Dir, U, bins = rose_binX, units = unit, nsector = nsector, cmap = XMLcmap, lw = 0, **kwargs ) l = ax.legend() ax.legend(title=legend_title) setp(l.get_texts(), fontsize=8) setp(l.get_title(), fontsize=8)
Thanks for any help
Lauriew
source share