using System;
using System.Collections.Generic;
namespace Core.Components.Charting.Data
{
///
/// This class represents collections of .
///
public class ChartDataCollection : ChartData
{
///
/// Creates a new instance of .
///
/// A of .
/// Thrown when is null.
public ChartDataCollection(IList list)
{
if (list == null)
{
throw new ArgumentNullException("list", "A list collection is required when creating ChartDataCollection.");
}
List = list;
}
///
/// Gets the list of of the .
///
public IList List { get; private set; }
}
}