Skip to content

Commit 5020571

Browse files
committed
VueUiGalaxy added gradient config option
1 parent 9572728 commit 5020571

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

package-lock.json

Lines changed: 2 additions & 2 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
@@ -1,7 +1,7 @@
11
{
22
"name": "vue-data-ui",
33
"private": false,
4-
"version": "2.0.47",
4+
"version": "2.0.48",
55
"type": "module",
66
"description": "A user-empowering data visualization Vue components library",
77
"keywords": [

src/default_configs.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3327,6 +3327,12 @@
33273327
"intensity": 30,
33283328
"color": "#FFFFFF"
33293329
}
3330+
},
3331+
"labels": {
3332+
"dataLabels": {
3333+
"prefix": "",
3334+
"suffix": ""
3335+
}
33303336
}
33313337
},
33323338
"legend": {

types/vue-data-ui.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,12 @@ declare module 'vue-data-ui' {
4646
color?: string;
4747
};
4848
};
49+
labels?: {
50+
dataLabels?: {
51+
prefix?: string;
52+
suffix?: string;
53+
};
54+
};
4955
};
5056
legend?: {
5157
backgroundColor?: string;

0 commit comments

Comments
 (0)