for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CMEN\GoogleChartsBundle\GoogleCharts\Options\AnnotationChart;
/**
* @author Christophe Meneses
*/
class Table
{
* If set to true, reverses the order of the annotations table and displays them in ascending order.
*
* @var bool
protected $sortAscending;
* The column index of the annotations table for which the annotations will be sorted. The index must be either 0,
* for the annotation label column, or 1, for the annotation text column.
* @var int
protected $sortColumn;
* @param bool $sortAscending
* @return $this
public function setSortAscending($sortAscending)
$this->sortAscending = $sortAscending;
return $this;
}
* @param int $sortColumn
public function setSortColumn($sortColumn)
$this->sortColumn = $sortColumn;