I have a chart with date values in the x axis. I want to show them in a specific format, Mon-yy. What do I put in the Initialization Javascript Function field? This is what I have. The yAxis stuff works but the xAxis part doesn't work. Thanks!
Bill
function (options) {
options.yAxis = {
min: $v('P11_MIN'),
max: 1,
title: ("Availability")
}
options.xAxis = {
labels: {
dateFormatter: ("Month yy")
}
};
return options;
}