chart1.addAxis("y", {
vertical: true, includeZero: true, leftBottom: false,minorTicks: false,majorTick: {length: 0},fixLower: "major", fixUpper: "major",
labelFunc: function(value){
//alert(value);
if(value != 0 ){
if(value % 20 == 0){
value = "$"+value+"M";
}else{
//alert(value % 20);
value = " ";//"$"+value+"M";
}
}
return value;
}
});