4

I have a row tabset and each tab contains a chart and a data table. However my data table keeps getting cut off. Is there some way to make the tabset height responsive so that my data table doesn't get cut off all the time?

See chart and data table cut off here:

See chart and data table cut off here

I know I could add a scrollbar using css but I don't exactly want that. I want my chart and data to show completely.

DS_UNI
  • 2,600
  • 2
  • 11
  • 22
  • Which red redaction is the one being cut off? (It isn't clear to me from the image, perhaps you can explain a little better?) – r2evans Mar 26 '19 at 04:54
  • The cut off is right at the bottom of the image. There is 1 filter box on the bottom left and right corners of the image. The chart displays fine just the data table is getting cut off. Hope this helps. – Stephanie Lee Mar 26 '19 at 05:25

1 Answers1

0

Maybe it would be a solution to output your plots (if I see it correctly they are created with ggplot) with plottly.

library(plotly)

ggplotly(your_plot)
nasbar
  • 40
  • 7