/OpenReport

C# Library for create reports using HTML

Primary LanguageC#GNU General Public License v3.0GPL-3.0

Open Report

A simple library to display minimal reports for WinForms applications using .NET Framework 4.7.x

Example

[TableStyle(TableStyle.Striped)]
public class Produto
{
    [TableColumnHeader("Description")]
    [TableColumnSize(50)]
    public string Description { get; set; }

    [TableColumnHeader("Stock")]
    [TableColumnTotalize(ColumnFormatStyle.Integer)]
    public int StockAmmount { get; set; }
}

exemple