Displaying each value along the x-axis in a Qing chart

I have a lot of X-axis values โ€‹โ€‹and I want all the values โ€‹โ€‹to appear on the X-axis when scaling. Is there a way to do this? Since each square does not have the meaning mentioned at the bottom, so it will be difficult for a person to see the graph to know which date and time that part belongs to. You can view my graph at alnnovative.com/zing5.php and you can give any suggestion if you think it is better to implement it to achieve the requirement

+3


source to share


1 answer


You want to use a combination of numeric max-items

and boolean attributes items-overlap

on your object scale-x

to find the best way to display information to your users. In this demo, I changed the format of the timestamps, rotated them to increase space, and set the previously mentioned attributes like this:

"items-overlap":true,
"max-items":20

      



Hope this helps! I'm on the ZingChart team too, so please let me know if you have any other questions.

+5


source







All Articles