Displaying chart data from a database
问题 Im following the instructions in http://docs.highcharts.com/#preprocessing-data-from-a-database to display some data comming from a database using php PDO and mysql but i only get slices when i show the chart.. this is my code MODEL public function get_proyectos_service_por_id($idproject) { $sql = "SELECT p.id_project, s.service_type, s.completion_status, s.id_service, sp.id_projectserv FROM projects p LEFT JOIN project_serv sp ON p.id_project = sp.id_project LEFT JOIN services s ON sp.id