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!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Missing full X Axis labels

cmedaMar 27 2018 — edited Mar 28 2018

Hello,

X axis on chart is not showing full value. Is there any way like rotate or some other option. i can increase region height but not width.

pastedImage_0.png

Thank you !

This post has been answered by Oleh Tyshchenko on Mar 28 2018
Jump to Answer

Comments

Blue Bird

You can format Label column in your chart source Query so it will took less space. For your case you can use abbreviated month name like Mar, Feb, Jan, etc.

If this suit you, let me know and I can help you on that. Just paste the query with this field name and tell me the data type of the field.

Oleh Tyshchenko
Answer

If it's JET Charts then you can set the X axis label size in percent or pixels by this chart's Advanced JavaScript code:

function( options ) { 

    options.xAxis.size  = "30%"; // define size in percent

    options.xAxis.size  = "100px"; // define size in pixels

   

    return options;

}

Marked as Answer by cmeda · Sep 27 2020
1 - 2
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Apr 25 2018
Added on Mar 27 2018
2 comments
373 views