tags:

views:

895

answers:

0

I need to draw a table of data into a vector image with C#. I'm looking a library or component that helps me to draw the table without having to care about its layout myself.

All I'd like to care about is what data belongs into which cell.

I already know of some libraries that allow me to create vector images with C# (e.g. SharpVectorGraphics/SvgNet for SVG images), but I can't find anything that helps me with the table.

Question

Does anybody know of a library or component that can do this? It doesn't have to be free if it does the job well. The vector image should have a format that can be displayed by a standard installation of Microsoft PowerPoint and Word.

Question #2:

Does anybody know a way to render (an) HTML (table) to an image with C#?