1<?php
2/**
3 * DokuWiki Plugin RadarChart (Helper Component)
4 */
5
6class helper_plugin_radarchart extends DokuWiki_Plugin {
7
8    public function loadConfig() {
9        return array(
10            'width' => $this->getConf('width'),
11            'height' => $this->getConf('height'),
12            'colorScheme' => $this->getConf('colorScheme'),
13            'minScale' => $this->getConf('minScale'),
14            'maxScale' => $this->getConf('maxScale'),
15            'legendPosition' => $this->getConf('legendPosition'),
16            'borderWidth' => $this->getConf('borderWidth'),
17            'pointRadius' => $this->getConf('pointRadius'),
18            'fillOpacity' => $this->getConf('fillOpacity'),
19            'containerBg' => $this->getConf('containerBg'),
20            'chartBg' => $this->getConf('chartBg')
21        );
22    }
23}