I have been utilizing the table feature within Google Chart Tools to showcase data retrieved from a database. Upon displaying this grid inside a scrollable div, I noticed that the column headings are wrapping to multiple lines instead of displaying in a single line as intended. As illustrated in the attached screenshot, the headings get wrapped to three lines, but I am looking to have them displayed in just one line...
Below is the CSS I am currently using for the div:
.reportGrid {
width: 1024px;
height: 300px;
border: 2px solid #ccc;
background-color: #ffffff;
overflow: auto;
}
If anyone has any insights on why this might be happening and how to rectify it, any input would be greatly appreciated.