SeriesPie.php in Flot 8
File
flot_examples/src/Controller/SeriesPie.php
View source
<?php
namespace Drupal\flot_examples\Controller;
use Drupal\Core\Controller\ControllerBase;
class SeriesPie extends ControllerBase {
public function content() {
$output[] = [
'#type' => 'flot',
'#theme' => 'flot_examples_series_pie',
'#data' => [
[
'label' => "Series1",
'data' => 3,
],
[
'label' => "Series2",
'data' => 30,
],
],
'#options' => [
'series' => [
'pie' => [
'show' => TRUE,
],
],
],
];
return $output;
}
}
Classes
Name |
Description |
SeriesPie |
Display a chart demonstrating pie charts. |