Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 15 Oracle Analytics Lounge
- 208 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 76 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
obiee chart 11.1.1.9 - horizontal axis

hello experts.
I have a question about X axis.
I have this a chart with month/year in X Axis.
my customer would like to see chart like this:
Is that possible?
In my first chart (obiee) I get year only once because I have this formula in year column:
CASE WHEN "Time"."Month" = 6 THEN CAST("Time"."Year" AS CHAR(8)) ELSE ' ' END
Any ideas?
Thanks!
Answers
-
Horizontal axis in obiee has option to change the level orientation.
0 -
I am not sure if the question is about filtering Year or orientation of X axis. If it is about filtering Year, then you can add another year column in the analysis. Add a filter on that column. Hide the column.
0 -
Thanks for your replies.
My requeriment is show all months and a year once. I know about Label orientation in X Axis. If I apply this option I see this:
Month and Years are overlap and not work for my customer.
Any help?
I know about D3 tecnology but I can't setup javascript. I would like to fix using standard obiee charts.
Thanks
0 -
Alex1 wrote:I know about D3 tecnology but I can't setup javascript. I would like to fix using standard obiee charts.
"fix" meaning "make a standard software behave like Excel" once more...
0 -
use
CASE WHEN "Time"."Month" = 6 THEN CHAR(13) || CAST("Time"."Year" AS CHAR(8)) ELSE ' ' END
and
set label orientation to 0.
0 -
Thanks! But with 1024 pixels with screen resolution years and months are still overlaping, If I change resolution to 2000 it works, but not work for my costumer.
Thanks for your option!
0