#define Graph_And_Chart_PRO using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ChartAndGraph.DataSource { /// /// row collection in a data source /// internal class ChartRowCollection : ChartDataSourceBaseCollection { protected override string ItemTypeName { get { return "group"; } } } }