<?php require_once '../lib/Kendo/Autoload.php'; $total = new \Kendo\Dataviz\UI\ChartSeriesItem(); $total->name('Total Visits') ->data(array(56000, 63000, 74000, 91000, 117000, 138000)); $unique = new \Kendo\Dataviz\UI\ChartSeriesItem(); $unique->name('Unique visitors') ->data(array(52000, 34000, 23000, 48000, 67000, 83000)); $valueAxis = new \Kendo\Dataviz\UI\ChartValueAxisItem(); $valueAxis->max(140000) ->line(array('visible' => false)) ->minorGridLines(array('visible' => true)); $categoryAxis = new \Kendo\Dataviz\UI\ChartCategoryAxisItem(); $categoryAxis->categories(array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun')) ->majorGridLines(array('visible' => false)); $tooltip = new \Kendo\Dataviz\UI\ChartTooltip(); $tooltip->visible(true) ->template('#= series.name #: #= value #'); $chart = new \Kendo\Dataviz\UI\Chart('chart'); $chart->addSeriesItem($total, $unique) ->addValueAxisItem($valueAxis) ->addCategoryAxisItem($categoryAxis) ->legend(array('visible' => false)) ->seriesDefaults(array('type' => 'bar')) ->title(array('text' => 'Site Visitors Stats \n /thousands/')) ->chartArea(array('background' => 'transparent')) ->tooltip($tooltip); echo $chart->render(); ?> <style type="text/css"> #chart { background: center no-repeat url('../content/shared/styles/world-map.png'); } </style>