Widgets > Chart Widgets > wijbubblechart > wijbubblechart Tutorial > wijbubblechart 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.
hint: {
content: function () {
return 'x:' + this.x + ',y:' + this.y + ",y1:" + this.data.y1;
}
header: {
text: "Hardware Distribution"
},
seriesList: [{
label: "West",
legendEntry: true,
data: { x: [5, 14, 20, 18, 22], y: [5500, 12200, 60000, 24400, 32000], y1: [3, 12, 33, 10, 42] }
// markers: {
// type: 'tri'
// }
}]
axis: {
y: {
text: "Total Hardware"
},
x: {
text: ""
}
},