Documentation

sum

gets the sum of property values

void sum(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