I am trying to get my pygal.SolidGauge charts to line up in a horizontal line like this: charts in horizontal row
But I find that by default the charts are stacking up vertically like this: charts in vertical row
How can I get them to line up horizontally? I am using Python 3.5.1 and here's my code
import pygal
def create_chart():
gauge_chart = pygal.SolidGauge(show_legend=False, inner_radius=0.70, half_pie=False)
gauge_chart.add('Max ', [{'value': 58, 'max_value': 100}])
gauge_chart.add('Min ', [{'value': 42, 'max_value': 100}])
gauge_chart.add('Mean', [{'value': 28, 'max_value': 100}])
gauge_chart.render_to_png("chart.png")
if __name__ == "__main__":
create_chart()