xtensibilitybro
3 years agoNew Contributor III
Report Header - Report Title Placement
Hi All,
Thanks in advance for the help on this. I am looking for configure the Report Title in a cube to to be aligned left rather than center. In the screenshot below I would like "Consolidate...
- 3 years ago
Hi Amar,
Try this:
Dim uiItem As CVExtenderReportUIItem = args.Report.CurrentUIItem
If uiItem.UIItemType = XFReportUIItemType.PageHeaderLabelTitle
uiItem.Visible = True
uiItem.TextAlignment = 2 'BottomLeft
uiItem.Left = 1
End IfTextAlignment has an enumerated list deep in the API Details & Database Documentation. .Left I actually didn't find in the documentation but guessed on a test value and it seemed to work.
Note for my reports, this ended up overlapping with the default logo position. So, the other option you might consider is putting this Page Header text in the Subtitle Left 1 section and shifting your other text ("Test") to Subtitle Left 2.
Cheers,
-DB