Documentation

max

gets the maximum value of a property

void max(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","max"]
        }
});
//displays the maximum "sales" value for each year

Back to top