Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Initialization Javascript Function to format dates

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;
}

Comments
Post Details
Added on Oct 6 2023
5 comments
141 views