using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace Core.Components.Charting.Data
{
///
/// This class represents data in 2D space which forms a closed area.
///
public class AreaData : ChartData
{
///
/// Creates a new instance of .
///
/// A of as (X,Y) points.
/// Thrown when is null.
public AreaData(IEnumerable> points) : base(points)
{
}
}
}