Text Justification in a Dashboard or BAQ

Is there a way in either a BAQ or a Dashboard to right justify text and date fields? When you’ve got a date field to the right of a numeric field, all the numbers can start to run together.

Cheers,
Charlie Payne
Hendrick Screen Company

just a SWAG;
dont know of any column-format set options but
have you tried a calculated field that is LEFT PADDED with spaces?
it’s messy, but it might be worth a try if nothing else pops up

Try this. You’ll have to customize the dashboard.

EpiUltraGrid dgv;
dgv.DisplayLayout.Bands[0].Columns["colname"].CellAppearance.TextHAlign = Infragistics.Win.HAlign.Right;
1 Like