ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilChartSpider.php
Go to the documentation of this file.
1 <?php
2 
23 class ilChartSpider extends ilChart
24 {
25  protected array $leg_labels = array();
26  protected float $y_max = 0;
27 
28  public function getDataInstance(?int $a_type = null): ilChartData
29  {
30  return new ilChartDataSpider();
31  }
32 
33  protected function isValidDataType(ilChartData $a_series): bool
34  {
35  return ($a_series instanceof ilChartDataSpider);
36  }
37 
42  public function setLegLabels(array $a_val): void
43  {
44  $this->leg_labels = $a_val;
45  }
46 
51  public function getLegLabels(): array
52  {
53  return $this->leg_labels;
54  }
55 
56 
61  public function setYAxisMax(float $a_val): void
62  {
63  $this->y_max = $a_val;
64  }
65 
70  public function getYAxisMax(): float
71  {
72  return $this->y_max;
73  }
74 
75  protected function addCustomJS(): void
76  {
77  $tpl = $this->tpl;
78 
79  $tpl->addJavaScript("assets/js/jquery.flot.highlighter.js");
80  $tpl->addJavaScript("assets/js/jquery.flot.spider.js");
81  }
82 
83  public function parseGlobalOptions(stdClass $a_options): void
84  {
85  $a_options->grid = new stdClass();
86  $a_options->grid->hoverable = false;
87  $a_options->grid->clickable = false;
88  $a_options->grid->ticks = $this->getYAxisMax();
89  $a_options->grid->tickColor = ilChart::renderColor("#000", "0.1");
90  $a_options->grid->mode = "spider";
91  }
92 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
parseGlobalOptions(stdClass $a_options)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getYAxisMax()
Get y axis max value.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setYAxisMax(float $a_val)
Set y axis max value.
getDataInstance(?int $a_type=null)
ilGlobalTemplateInterface $tpl
isValidDataType(ilChartData $a_series)
getLegLabels()
Get leg labels.
setLegLabels(array $a_val)
Set leg labels.
addJavaScript(string $a_js_file, bool $a_add_version_parameter=true, int $a_batch=2)
Add a javascript file that should be included in the header.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static renderColor(string $a_value, float $a_opacity=1)
Render html color code.