Back to all examples
  • Circle size shows number of job applicants
  • Vertical position shows number of employees
  • Horizontal position shows job growth
PHP
<?php
require_once '../lib/Kendo/Autoload.php';
$series = new \Kendo\Dataviz\UI\ChartSeriesItem();
$series->type('bubble')
       ->data(array(
          array('x' => -2500, 'y' =>  50000, 'size' => 500000, 'category' => 'Microsoft'),
          array('x' => 500, 'y' => 110000, 'size' => 7600000, 'category' => 'Starbucks'),
          array('x' => 7000, 'y' => 19000, 'size' => 700000, 'category' => 'Google'),
          array('x' => 1400, 'y' => 150000, 'size' => 700000, 'category' => 'Publix Super Markets'),
          array('x' => 2400, 'y' => 30000, 'size' => 300000, 'category' => 'PricewaterhouseCoopers'),
          array('x' => 2450, 'y' => 34000, 'size' => 90000, 'category' => 'Cisco'),
          array('x' => 2700, 'y' => 34000, 'size' => 400000, 'category' => 'Accenture'),
          array('x' => 2900, 'y' => 40000, 'size' => 450000, 'category' => 'Deloitte'),
          array('x' => 3000, 'y' => 55000, 'size' => 900000, 'category' => 'Whole Foods Market')
       ));

$xAxis = new \Kendo\Dataviz\UI\ChartXAxisItem();
$xAxis->labels(array('format' => '{0:N0}', 'skip' => 1))
      ->axisCrossingValue(-5000)
      ->majorUnit(2000)
      ->addPlotBand(array('from' => -5000, 'to' => 0, 'color' => '#00f', 'opacity' => 0.05));

$yAxis = new \Kendo\Dataviz\UI\ChartYAxisItem();
$yAxis->labels(array('format' => '{0:N0}'))
      ->line(array('width' => 0));

$chart = new \Kendo\Dataviz\UI\Chart('chart');
$chart->title(array('text' => 'Job Growth for 2011'))
      ->legend(array('visible' => false))
      ->addXAxisItem($xAxis)
      ->addYAxisItem($yAxis)
      ->tooltip(array('visible' => true, 'format' => '{3}: {2:N0} applications', 'opacity' => 1))
      ->addSeriesItem($series);
?>
<div class="demo-section k-content wide">
    <?= $chart->render() ?>
    <ul class="k-content">
        <li>Circle size shows number of job applicants</li>
        <li>Vertical position shows number of employees</li>
        <li>Horizontal position shows job growth</li>
    </ul>
</div>

<style>
.demo-section {
    position: relative;
}

.demo-section ul {
    font-size: 11px;
    margin: 63px 30px 0 0;
    padding: 30px;
    position: absolute;
    right: 0;
    top: 0;
    text-transform: uppercase;
    width: 146px;
    height: 94px;
}
</style>