+ 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);
+ }
+
+ protected function set_defaults() {
+ // For the child classes to extend.
+ }
+