0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

💄 Improved members chart Y range

no issue.

- improved the Y axis of members list chart to only take the visible range into consideration. This way the change in a period is more understandable
- added labels to Y axis so that the range is clearer
This commit is contained in:
Peter Zimon 2020-04-28 13:59:45 +02:00
parent fa9445d1ab
commit be99251f7f
2 changed files with 5 additions and 3 deletions

View file

@ -236,8 +236,10 @@ export default Component.extend({
drawBorder: false drawBorder: false
}, },
ticks: { ticks: {
display: false, maxTicksLimit: 5,
beginAtZero: true fontColor: '#9baeb8',
padding: 8,
precision: 0
} }
}] }]
} }

View file

@ -134,7 +134,7 @@ p.gh-members-list-email {
.gh-members-chart-container { .gh-members-chart-container {
height: 186px; height: 186px;
margin: 0; margin: 0;
padding: 0 7px 4px; padding: 4px 7px 11px 2px;
} }
.gh-members-chart-summary { .gh-members-chart-summary {