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