Skip to content

Commit 0fb670b

Browse files
committed
Bump vue-data-ui from 2.6.27 to 2.6.28
1 parent e6aa965 commit 0fb670b

File tree

4 files changed

+25
-9
lines changed

4 files changed

+25
-9
lines changed

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"prismjs": "^1.29.0",
2121
"ssh2": "^1.16.0",
2222
"vue": "^3.5.13",
23-
"vue-data-ui": "^2.6.27",
23+
"vue-data-ui": "^2.6.28",
2424
"vue-data-ui-cli": "^1.1.31",
2525
"vue-hi-code": "^1.2.1",
2626
"vue-router": "^4.5.0",

public/releases.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11
[
2+
{
3+
"version": "v 2.6.28",
4+
"date": "2025-04-02",
5+
"updates": [
6+
{
7+
"component": "VueUiXy",
8+
"description": "Fix yAxis scale width in individual scale mode when segregating series",
9+
"link": "/docs#vue-ui-xy"
10+
}
11+
]
12+
},
213
{
314
"version": "v 2.6.27",
415
"date": "2025-04-01",

src/components/SatisfactionStats.vue

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,8 @@ const xyDataset = computed(() => {
683683
scaleMin: 0,
684684
scaleMax: 5,
685685
scaleSteps: 5,
686-
suffix: ''
686+
suffix: '',
687+
scaleLabel: 'Satisfaction rating'
687688
},
688689
{
689690
name: 'Cumulative average',
@@ -695,10 +696,11 @@ const xyDataset = computed(() => {
695696
scaleSteps: 5,
696697
suffix: '',
697698
dashed: true,
698-
color: '#ff7f0e'
699+
color: '#ff7f0e',
700+
scaleLabel: 'Satisfaction rating'
699701
},
700702
{
701-
name: 'Ratings per day',
703+
name: 'Number of daily votes',
702704
series: history.value.ratingsPerDay,
703705
type: 'bar',
704706
scaleSteps: 5,
@@ -717,7 +719,10 @@ const xyConfig = computed(() => {
717719
fontSize: 20,
718720
yAxis: {
719721
useIndividualScale: true,
720-
labelWidth: 64,
722+
labelWidth: 32,
723+
scaleLabelOffsetX: -24,
724+
groupColor: isDarkMode.value ? '#8A8A8A' : '#1A1A1A'
725+
721726
},
722727
xAxisLabels: {
723728
values: history.value.dates,

0 commit comments

Comments
 (0)