We need to implement a bar chart in which the vertical axis defines "People" (names) and the horizontal axis defines values for each of them.
The amount of points (People) in the vertical axis could be large, and the overall chart height/width statically defined (ex. 500 x 500). Therefore, implementing vertical scrolling with CSS is not useful since the horizontal axis labels are lost while scrolling, especially in the first load, when rendering large lists of "People".
How can we implement vertical scrolling while keeping the horizontal axis labels static? (Kind of like vertically scrolling a table's body without loosing the column headings, while scrolling).