/* Copyright (C) 2008 Webyog Softworks Private Limited This file is a part of Visifire Charts. Visifire is a free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. You should have received a copy of the GNU General Public License along with Visifire Charts. If not, see . If GPL is not suitable for your products or company, Webyog provides Visifire under a flexible commercial license designed to meet your specific usage and distribution requirements. If you have already obtained a commercial license from Webyog, you can use this file under those license terms. */ using System.Collections.ObjectModel; namespace Visifire.Charts { /// /// Collection of DataSeries /// public class DataSeriesCollection : ObservableCollection { } /// /// Collection of DataPoint /// public class DataPointCollection : ObservableCollection { } /// /// Collection of Axis /// public class AxisCollection : ObservableCollection { } /// /// Collection of Title /// public class TitleCollection : ObservableCollection { } /// <summary> /// Collection of Legend /// </summary> public class LegendCollection : ObservableCollection<Legend> { } /// <summary> /// Collection of TrendLine /// </summary> public class TrendLineCollection : ObservableCollection<TrendLine> { } /// <summary> /// Collection of ChartGrid /// </summary> public class ChartGridCollection : ObservableCollection<ChartGrid> { } /// <summary> /// Collection of Ticks /// </summary> public class TicksCollection : ObservableCollection<Ticks> { } /// <summary> /// Collection of ToolTips /// </summary> public class ToolTipCollection : ObservableCollection<Visifire.Charts.ToolTip> { } }