I use Highchart to designe a chart, but the problems that the link hightchart.com always available,
I user symfony and this is my code:
$ob = new Highchart();
// ID de l'élement de DOM que vous utilisez comme conteneur
$ob->chart->renderTo('chart');
$ob->chart->type('column');
$ob->yAxis->title(array('text' => "nombre , sms, fax"));
$ob->xAxis->title(array('text' => "mois"));
$ob->xAxis->categories($horizontals);
$ob->tooltip->headerFormat('<span style="font-size:10px">{point.key}</span><table>');
$ob->tooltip->pointFormat('<tr><td style="color:{series.color};padding:0">{series.name}: </td><td style="padding:0"><b>{point.y} </b></td></tr>');
$ob->tooltip->footerFormat('</table>');
$ob->tooltip->shared(true);
$ob->tooltip->useHTML(true);
and this is the result
my question is how delete the tow elements 1 and 2
thanks for help