Documentation

count

gets the number of items in a group

void count(string property,object data);

Parameters

propertystringa data property
dataobjecta dataset with items of a group

See also

Example

$$("mychart").group({
        by:"year",
        map:{
            sales:["sales","sum"]
        }
});
//displays the total sales for each year

Back to top