mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-22 08:42:32 -05:00
Merge pull request '[v8.0/forgejo] [UI] Fix misalignment of authors for repo acctivity' (#5006) from bp-v8.0/forgejo-72f4130 into v8.0/forgejo
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/5006 Reviewed-by: Otto <otto@codeberg.org>
This commit is contained in:
commit
05af474e7a
1 changed files with 10 additions and 1 deletions
|
@ -68,7 +68,16 @@ const sfc = {
|
|||
display: false,
|
||||
},
|
||||
ticks: {
|
||||
color: 'transparent', // Disable drawing of labels on the x-axis.
|
||||
// Disable the drawing of the labels on the x-asis and force them all
|
||||
// of them to be 'shown', this avoids them being internally skipped
|
||||
// for some data points. We rely on the internally generated ticks
|
||||
// to know where to draw our own ticks. Set rotation to 90 degree
|
||||
// and disable autoSkip. autoSkip is disabled to ensure no ticks are
|
||||
// skipped and rotation is set to avoid messing with the width of the chart.
|
||||
color: 'transparent',
|
||||
minRotation: 90,
|
||||
maxRotation: 90,
|
||||
autoSkip: false,
|
||||
},
|
||||
},
|
||||
y: {
|
||||
|
|
Loading…
Reference in a new issue