Rock.Model.AttendanceService.GetChartData C# (CSharp) Метод

GetChartData() публичный Метод

Gets the chart data.
public GetChartData ( ChartGroupBy groupBy, AttendanceGraphBy graphBy, System.DateTime startDate, System.DateTime endDate, string groupIds, string campusIds, int dataViewId ) : IEnumerable
groupBy ChartGroupBy The group by.
graphBy AttendanceGraphBy The graph by.
startDate System.DateTime The start date.
endDate System.DateTime The end date.
groupIds string The group ids.
campusIds string The campus ids. Include the keyword 'null' in the list to include CampusId is null
dataViewId int The data view identifier.
Результат IEnumerable
        public IEnumerable<IChartData> GetChartData( ChartGroupBy groupBy, AttendanceGraphBy graphBy, DateTime? startDate, DateTime? endDate, string groupIds, string campusIds, int? dataViewId )
        {
            return GetChartData( groupBy, graphBy, startDate, endDate, groupIds, campusIds, dataViewId, null );
        }

Same methods

AttendanceService::GetChartData ( ChartGroupBy groupBy = ChartGroupBy.Week, AttendanceGraphBy graphBy = AttendanceGraphBy.Total, System.DateTime startDate = null, System.DateTime endDate = null, string groupIds = null, string campusIds = null, int dataViewId = null, string scheduleIds = null ) : IEnumerable