I am currently struggling with changing the font of the y axis name and the chart title itself.
I tried to create a font setting and apply it to the names - with no luck that it was.
new_chart.y_axis.title = chart_dict['y_title']
ft = Font(name='Calibri',
size=11,
bold = False,
italic = False,
vertAlign = None,
underline = 'none',
strike = False,
color = 'FF000000')
new_chart.y_axis.title.font = ft
Is there a simple setup for this - for example:
chart.y_axis.title.some_size_attrib = 12
or am I in the wrong direction?
source
share