c# - how to display HTML content in RenderTable column -
i working on project need display pdf , contents on it.
i using pdfexporter
generate pdf , rendertable display different contents.
now want display html content on pdf
i doing this
rendertable table = new rendertable(); var titlerow = table.rows[0]; titlerow[0].text = "<b>hello</b>"; doc.body.children.add(table); //here doc c1printdocument
this not working . text on pdf displays <b>hello</b>
want hello
any help?
output$example <- rendertable({ table <- sometable_data_here table }, sanitize.text.function = function(x) x)
Comments
Post a Comment