Hi
We are currently evaluating your product and I am trying to reproduce one of our main reports with it. I am having difficulty with the following: I need to have horizontal and vertical text orientation within the same row of a table but all cells end up getting the orientation of the last cell orientation that I set. For example:
builder.StartTable();
builder.CellFormat.Orientation = TextOrientation.Horizontal;
builder.InsertCell();
builder.Write("Horizontal");
builder.CellFormat.Orientation = TextOrientation.Downward;
builder.InsertCell();
builder.Write("Downward");
builder.EndRow();
builder.EndTable();
One more thing - how do I get the row to vertically size automatically for vertical text - ‘builder.RowFormat.HeightRule = HeightRule.Auto’ does not seem to work.
Thank you