advweb-grp1 / advanced-web-final-year-project

Final year advanced web develop unit project
MIT License
1 stars 0 forks source link

fix/x-axis labels #61

Closed LiamSingh64 closed 1 year ago

LiamSingh64 commented 1 year ago

Currently, x-axis labels for the Line Charts on the Dashboard view are too closely bunched together Two potential fixes include:

rwx-yxu commented 1 year ago

Both suggestions are not ideal. Instead, modify the category value on the x-axis. The category value expects an array which renders the labels for each item. By default since we are just passing nothing through, it will render each number for the data points.

LiamSingh64 commented 1 year ago

Looks like xaxis.categories length needs to be the exact as series.data length, currently trying to find a way around this