mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-27 12:28:48 +01:00
16 lines
No EOL
722 B
Text
16 lines
No EOL
722 B
Text
&title=<%= t('stats.actions_day_of_week_title') %>,{font-size:16},&
|
|
&y_legend=<%= t('stats.actions_day_of_week_legend.number_of_actions') %>,10,0x736AFF&
|
|
&x_legend=<%= t('stats.actions_day_of_week_legend.day_of_week') %>,10,0x736AFF&
|
|
&y_ticks=5,10,5&
|
|
&filled_bar=50,0x9933CC,0x8010A0,<%= t('stats.labels.created') %>,8&
|
|
&filled_bar_2=50,0x0066CC,0x0066CC,<%= t('stats.labels.completed') %>,8&
|
|
&values=<%= @actions_creation_day_array.join(",") %>&
|
|
&values_2=<%= @actions_completion_day_array.join(",") %>&
|
|
&x_labels=<%= t('date.day_names').join(",") %>&
|
|
&y_min=0&
|
|
<%
|
|
# add one to @max for people who have no actions completed yet.
|
|
# OpenFlashChart cannot handle y_max=0
|
|
-%>
|
|
&y_max=<%=@max+1 -%>&
|
|
&x_label_style=9,,2,1& |