using Core.Common.Base; namespace Core.Components.Charting.Data { /// /// Abstract class for data with the purpose of becoming visible in charting components. /// public abstract class ChartData : Observable { /// /// Creates a new instance of . /// protected ChartData() { } } }