Widgets > wijcombobox > wijcombobox Tutorial > wijcombobox Step 3 of 3: Running the Project |
In this step you will run the application and observe the new data and chart elements that include titles for the Y axis, Chart header, and chart labels.
showingAnimation: { effect: "blind", duration: 2500},
hidingAnimation: { effect: "blind" },
$(document).ready(function () {
$("#tagsinput").wijcombobox(
{
data: [
{
label: 'c++',
value: 'c++'
},
{
label: 'java',
value: 'java'
},
{
label: 'php',
value: 'php'
},
{
label: 'coldfusion',
value: 'coldfusion'
}, {
label: 'javascript',
value: 'javascript'
},
{
label: 'asp',
value: 'asp'
},
{
label: 'ruby',
value: 'ruby'
},
{
label: 'python',
value: 'python'
},
{
label: 'c',
value: 'c'
},
{
label: 'scala',
value: 'scala'
},
{
label: 'groovy',
value: 'groovy'
},
{
label: 'haskell',
value: 'haskell'
},
{
label: 'perl',
value: 'perl'
}
]
}
);