Increase label area sizes.

This commit is contained in:
Bauke 2022-10-08 22:40:05 +02:00
parent 1771bd7eb3
commit 352d107e35
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 2 additions and 2 deletions

View File

@ -62,8 +62,8 @@ impl UserCountChart {
format!("Using the {group_name} subscriber count."),
text_style(20),
)
.x_label_area_size(40)
.y_label_area_size(40)
.x_label_area_size(50)
.y_label_area_size(50)
.margin(10)
.build_cartesian_2d(0..(datapoints_len + 1), min_count..max_count)?;