Maybe I was not clear,
I wanted to show the label of the bar values on top. I have set the showLabels=true. But the value of zero is not displayed on top. I wanted to show the label zero(0) on top of the bar. Here is a sample data I want to show the bar chart
var sampleData = [
{ Day: ‘Monday’, Running: 30 },
{ Day: ‘Tuesday’, Running: 25 },
{ Day: ‘Wednesday’, Running: 30},
{ Day: ‘Thursday’, Running: 0},
{ Day: ‘Friday’, Running: 20},
{ Day: ‘Saturday’, Running: 30},
{ Day: ‘Sunday’, Running: 20 }
];
For Thursday, no bar is showing but I want to show the label zero(0). For all other days it is showing the label but not for Thursday. I want that to be shown on the bar chart.
Can this be done in JQWidgets “jquery-1.8.2.min.js” version?
Here is the sample graph. Check the 2nd graph. It does not show the value “0” like other graphs