I'm trying to bold my font by using chunk. But the special thing is that my label is written under the addcell within a datareader.
This is how i attempt to format my label within my datareader
table.AddCell(phrase.Add(new Chunk("test:", normalFont)) + dr[0].ToString());
This is the declaration to phrase and font type:
var normalFont = FontFactory.GetFont(FontFactory.HELVETICA, 12);
var phrase = new Phrase();
And this is what is being displayed:
However before i attempt to format my label this is how it will look like
This is where i just directly add a label into my table.AddCell
table.AddCell(dr[0].ToString());