diff --git a/update_switcher_chart.py b/update_switcher_chart.py index 7a83268637..17cb87cbc1 100644 --- a/update_switcher_chart.py +++ b/update_switcher_chart.py @@ -24,9 +24,10 @@ progress.append(number) dates.append(datetime.fromtimestamp(commit.authored_date)) -pyplot.plot_date(dates, progress) +pyplot.plot_date(dates, progress, linestyle='-', marker='') pyplot.ylim(ymin=0) pyplot.grid() pyplot.gcf().autofmt_xdate() pyplot.gca().yaxis.set_major_formatter(PercentFormatter()) +pyplot.title("Postęp tłumaczenia do dodania do przełącznika języków") pyplot.savefig("language-switcher-progress.svg")