I am using a CheckboxButtonGroup
INDICATORS = ["S&R", "Moving Averages", "Exponential MA", "RSI"]
indicatorsGroup = CheckboxButtonGroup(labels=INDICATORS, active=[])
It is displayed as follows:
As you can see the fourth button i.e. “RSI” is getting cutoff due to other layout on its right. I do not want to adjust the size of the layout on the right.
My question is: Is it possible to put “RSI” below “S&R” and maintain a grid of CheckboxButtons something like 3x3 WITHOUT creating a new CheckboxButtonGroup?
My last resort would be using a CheckboxGroup, however they look less intuitive than CheckboxButtonGroup so I am hoping someone knows how I can put “RSI” and more buttons on a new line.