$chart = new Highchart(); $chart->chart->renderTo = "container"; $chart->title->text = "Logarithmic axis demo"; $chart->xAxis->tickInterval = 1; $chart->yAxis->type = "logarithmic"; $chart->yAxis->minorTickInterval = 0.1; $chart->tooltip->headerFormat = "<b>{series.name}</b><br />"; $chart->tooltip->pointFormat = "x = {point.x}, y = {point.y}"; $chart->series[] = array( 'data' => array( 1, 2, 4, 8, 16, 32, 64, 128, 256, 512 ), 'pointStart' => 1 );