FieldSet 클래스
fieldset/legendText example
new mc.types.FieldSet({
    showTo: 'showArea',
    legendText: '스포츠 분야',
    defaultCcode: 'texttype',
    width: 500,

    component: [
        {ccode: 'checkboxgroup', eachWidth: [60, 60, 60, 60], defaultCcode: 'checkbox', width: 420,
             component: [
                {ccode: 'label', text: '좋아하는 스포츠', width: 100},
                {text: '축구'},
                {text: '농구', checked: true},
                {text: '수영'},
                {text: '마라톤', checked: true}
            ]
        },
        {linefeed: true},
        {ccode: 'typegroup',
             component: [
                {ccode: 'label', text: '좋아하는 선수', width: 100},
                {width: 70},
                {width: 70, style: {'margin-left': '20px'}},
                {width: 70, style: {'margin-left': '20px'}}
            ]
        }
    ]
})