hi i am trying to find min and max values of x and y how can i find this min and max functions is not working correctly
$dataPoints = array( array(\'x\' =&g
Sample code to built your required answer
foreach($dataPoints[0]['x'] as $x_val) { //write max min func for x values } foreach($dataPoints[0]['y'] as $y_val) { //write max min func for y values }