Newer
Older
ClosedXML / ClosedXML / Excel / Charts / IXLCharts.cs
@Francois Botha Francois Botha on 30 May 2017 165 bytes Unknown changes - something to do with line endings?
using System.Collections.Generic;

namespace ClosedXML.Excel
{
    public interface IXLCharts: IEnumerable<IXLChart>
    {
        void Add(IXLChart chart);
    }
}