I am using the below library JDateChooser, which is a Date Picker GUI which we can put into Netbeans pallet.
JDateChooser
http://plugins.netbeans.org/plugin/658/jdatecho
The problem is the width of the component, just increase that value. If your DateChooserCombo is called chooserDate, it must be like this:
Dimension size = chooserDate.getCalendarPreferredSize(); size.width += 90; chooserDate.setCalendarPreferredSize(size);