Skip to content

Commit fad1067

Browse files
gh-38: Update update_switcher_chart with title and line plot (#40)
* Update update_switcher_chart.py with title and line plot * Update update_switcher_chart.py Co-authored-by: Maciej Olko <[email protected]> * Update update_switcher_chart.py Co-authored-by: Maciej Olko <[email protected]> --------- Co-authored-by: Maciej Olko <[email protected]>
1 parent 46b4968 commit fad1067

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

update_switcher_chart.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@
2424
progress.append(number)
2525
dates.append(datetime.fromtimestamp(commit.authored_date))
2626

27-
pyplot.plot_date(dates, progress)
27+
pyplot.plot_date(dates, progress, linestyle='-', marker='')
2828
pyplot.ylim(ymin=0)
2929
pyplot.grid()
3030
pyplot.gcf().autofmt_xdate()
3131
pyplot.gca().yaxis.set_major_formatter(PercentFormatter())
32+
pyplot.title("Postęp tłumaczenia do dodania do przełącznika języków")
3233
pyplot.savefig("language-switcher-progress.svg")

0 commit comments

Comments
 (0)