/*
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 { }
///
/// Collection of Legend
///
public class LegendCollection : ObservableCollection