Is there a for the grid to swap columns and rows? Normally, your grid has a fixed number of columns, repeating for each row of data; the "next" row of data is immediately below the "current" row; and the user scrolls down to see more info.
I need to create a grid with a fixed number of rows, including a row "header" as the left-most column. As data is populated, news columns will be added to the grid; each new tuple is added as a column to the right of the proceeding column. The user also scrolls horizontally through the results.
Row/Column sizing will be fixed and I don't need to dynamically add/remove data, so it might be possible to create a single non-scrolling left column and massage the data.
What is the best approach?
I need to create a grid with a fixed number of rows, including a row "header" as the left-most column. As data is populated, news columns will be added to the grid; each new tuple is added as a column to the right of the proceeding column. The user also scrolls horizontally through the results.
Row/Column sizing will be fixed and I don't need to dynamically add/remove data, so it might be possible to create a single non-scrolling left column and massage the data.
What is the best approach?