Skip to content

Commit ca6d327

Browse files
committed
VueUiQuadrant added zoom & minimap
1 parent 42e63f0 commit ca6d327

File tree

4 files changed

+316
-7
lines changed

4 files changed

+316
-7
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.71",
4+
"version": "2.0.72",
55
"type": "module",
66
"description": "A user-empowering data visualization Vue components library",
77
"keywords": [

src/App.vue

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2573,6 +2573,30 @@ const radarConfig = ref({
25732573
const quadrantConfig = ref({
25742574
style: {
25752575
chart: {
2576+
title: {
2577+
text: "Title",
2578+
subtitle: {
2579+
text: "Subtitle"
2580+
}
2581+
},
2582+
layout: {
2583+
labels: {
2584+
quadrantLabels: {
2585+
tl: {
2586+
text: 'TOP LEFT'
2587+
},
2588+
tr: {
2589+
text: 'TOP RIGHT'
2590+
},
2591+
br: {
2592+
text: 'BOTTOM RIGHT'
2593+
},
2594+
bl: {
2595+
text: 'BOTTOM LEFT'
2596+
}
2597+
}
2598+
}
2599+
},
25762600
tooltip: {
25772601
showShape: false,
25782602
customFormat: ({ seriesIndex, datapoint, series, config }) => {

0 commit comments

Comments
 (0)