MDL-55015 core: Add support for axis label in charts

Part of MDL-54987 epic.
This commit is contained in:
Frederic Massart
2016-07-25 10:42:28 +01:00
committed by Dan Poltawski
parent 858cbfdfd3
commit f5474e65fc
8 changed files with 298 additions and 8 deletions
+49 -1
View File
@@ -41,6 +41,8 @@ class chart_base implements JsonSerializable, renderable {
protected $series = [];
protected $labels = [];
protected $title = null;
protected $xaxes = [];
protected $yaxes = [];
public function __construct() {
}
@@ -54,10 +56,31 @@ class chart_base implements JsonSerializable, renderable {
'type' => $this->get_type(),
'series' => $this->series,
'labels' => $this->labels,
'title' => $this->title
'title' => $this->title,
'axes' => [
'x' => $this->xaxes,
'y' => $this->yaxes,
]
];
}
private function get_axis($type, $index, $createifnotexists) {
if ($type === 'x') {
$axes = &$this->xaxes;
} else {
$axes = &$this->yaxes;
}
if (!isset($axes[$index])) {
if (!$createifnotexists) {
throw new coding_exception('Unknown axis.');
}
$axes[$index] = new chart_axis();
}
return $axes[$index];
}
public function get_labels() {
return $this->labels;
}
@@ -75,6 +98,22 @@ class chart_base implements JsonSerializable, renderable {
return substr($classname, strpos($classname, '_') + 1);
}
public function get_xaxes() {
return $this->xaxes;
}
public function get_xaxis($index = 0, $createifnotexists = false) {
return $this->get_axis('x', $index, $createifnotexists);
}
public function get_yaxes() {
return $this->yaxes;
}
public function get_yaxis($index = 0, $createifnotexists = false) {
return $this->get_axis('y', $index, $createifnotexists);
}
public function set_labels(array $labels) {
$this->labels = $labels;
}
@@ -82,4 +121,13 @@ class chart_base implements JsonSerializable, renderable {
public function set_title($title) {
$this->title = $title;
}
public function set_xaxis(chart_axis $axis, $index = 0) {
return $this->xaxes[$index] = $axis;
}
public function set_yaxis(chart_axis $axis, $index = 0) {
return $this->yaxes[$index] = $axis;
}
}