change center of VueUiQuadrant graph #53
-
Hello, Thank you very much and greetings to all |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @elnerto ! The purpose of a quadrant chart is to position datapoints on 4 sides, to identify the quality of a datapoint, and have it classified on one of 4 sides. The intersection of both axes is derived from the dataset, it is only 0,0 if extremes are inverse (-n , n). If all your datapoints are positive on both x and y, they are all classified in the same portion of the quadrant, that's what it's designed to do. I think you might consider using Cheers, and thanks for trying out the lib :) |
Beta Was this translation helpful? Give feedback.
-
Thank you, I love this quadrant graph customFormat: ({ seriesIndex, datapoint, series, config }) => { |
Beta Was this translation helpful? Give feedback.
Hi @elnerto !
Thank you very much :)
The purpose of a quadrant chart is to position datapoints on 4 sides, to identify the quality of a datapoint, and have it classified on one of 4 sides.
The intersection of both axes is derived from the dataset, it is only 0,0 if extremes are inverse (-n , n). If all your datapoints are positive on both x and y, they are all classified in the same portion of the quadrant, that's what it's designed to do.
I think you might consider using
VueUiScatter
for your use case. The scatter chart's axes will behave as you expect.Cheers, and thanks for trying out the lib :)