How to set X,Y value in VueUiXy #195
-
Currently, VueUiXy only allows setting Y values. How can I set the X values? for example : [ 10, 45] ,[19,80] , [53,78],[ 101.9 , 57] |
Beta Was this translation helpful? Give feedback.
Answered by
graphieros
May 26, 2025
Replies: 2 comments 1 reply
-
series: [ |
Beta Was this translation helpful? Give feedback.
1 reply
-
In VueUiXy, X values are defined in the config, and all dataset items share the same scale. This is the 'time' axis. const config = ref({
chart: {
grid: {
labels: {
xAxisLabels: {
values: [] // Set your x axis values here
}
}
}
}
}) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
graphieros
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@jougisljs
In VueUiXy, X values are defined in the config, and all dataset items share the same scale. This is the 'time' axis.