Home
last modified time | relevance | path

Searched refs:byProperty (Results 1 – 2 of 2) sorted by relevance

/plugin/amcharts/assets/amcharts/plugins/export/libs/fabric.js/
H A Dfabric.min.js1byProperty){return find(array,byProperty,function(value1,value2){return value1>=value2})}function … argument
H A Dfabric.js1331 function max(array, byProperty) { argument
1332 return find(array, byProperty, function(value1, value2) {
1344 function min(array, byProperty) { argument
1345 return find(array, byProperty, function(value1, value2) {
1353 function find(array, byProperty, condition) { argument
1359 result = byProperty ? array[i][byProperty] : array[i];
1360 if (byProperty) {
1362 if (condition(array[i][byProperty], result)) {
1363 result = array[i][byProperty];