Solution
If you want your checkbox controls to have clickable text, you need to show the Boolean Text on the checkbox (and hide the Label):

By default, you see the Label and the Boolean Text of a checkbox when you first drop it. Clicking the label will not toggle a checkbox value at runtime. So you need to change the Boolean Text to whatever user-visible text you want (typically it's the same as the label), then hide the label. With this, users of your front panel will be able to toggle the checkbox value by clicking its text or the checkbox itself.