Chart bar class.
More...
Chart bar class.
- Copyright
- 2016 Frédéric Massart - FMCorz.net
- License
- http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
◆ add_series()
Add a series to the chart.
- Parameters
-
◆ get_horizontal()
core\chart_bar::get_horizontal |
( |
| ) |
|
Get whether the bars should be displayed horizontally or not.
- Return values
-
◆ get_labels()
core\chart_base::get_labels |
( |
| ) |
|
|
inherited |
Get the labels of the X axis.
- Return values
-
◆ get_series()
core\chart_base::get_series |
( |
| ) |
|
|
inherited |
Get the series.
- Return values
-
◆ get_stacked()
core\chart_bar::get_stacked |
( |
| ) |
|
Get whether the bars should be stacked or not.
- Return values
-
◆ get_title()
core\chart_base::get_title |
( |
| ) |
|
|
inherited |
Get the title.
- Return values
-
◆ get_type()
core\chart_base::get_type |
( |
| ) |
|
|
inherited |
Get the chart type.
- Return values
-
◆ get_xaxes()
core\chart_base::get_xaxes |
( |
| ) |
|
|
inherited |
Get the X axes.
- Return values
-
◆ get_xaxis()
core\chart_base::get_xaxis |
( |
|
$index = 0 , |
|
|
|
$createifnotexists = false |
|
) |
| |
|
inherited |
Get an X axis.
- Parameters
-
int | $index | The index of the axis. |
bool | $createifnotexists | When true, create an instance of the axis if none exist at this index yet. |
- Return values
-
◆ get_yaxes()
core\chart_base::get_yaxes |
( |
| ) |
|
|
inherited |
Get the Y axes.
- Return values
-
◆ get_yaxis()
core\chart_base::get_yaxis |
( |
|
$index = 0 , |
|
|
|
$createifnotexists = false |
|
) |
| |
|
inherited |
Get a Y axis.
- Parameters
-
int | $index | The index of the axis. |
bool | $createifnotexists | When true, create an instance of the axis if none exist at this index yet. |
- Return values
-
◆ jsonSerialize()
core\chart_bar::jsonSerialize |
( |
| ) |
|
Add the horizontal to the parent and return the serialized data.
- Return values
-
Reimplemented from core\chart_base.
◆ set_horizontal()
core\chart_bar::set_horizontal |
( |
|
$horizontal | ) |
|
Set whether the bars should be displayed horizontally or not.
- Parameters
-
bool | $horizontal | True if the bars should be displayed horizontally, false otherwise. |
◆ set_labels()
core\chart_base::set_labels |
( |
array |
$labels | ) |
|
|
inherited |
Set the chart labels.
- Parameters
-
string[] | $labels | The labels. |
◆ set_stacked()
core\chart_bar::set_stacked |
( |
|
$stacked | ) |
|
Set whether the bars should be stacked or not.
- Parameters
-
bool | $stacked | True if the chart should be stacked or false otherwise. |
◆ set_title()
core\chart_base::set_title |
( |
|
$title | ) |
|
|
inherited |
Set the title.
- Parameters
-
◆ set_xaxis()
core\chart_base::set_xaxis |
( |
chart_axis |
$axis, |
|
|
|
$index = 0 |
|
) |
| |
|
inherited |
Set an X axis.
Note that this will override any predefined axis without warning.
- Parameters
-
chart_axis | $axis | The axis. |
int | $index | The index of the axis. |
◆ set_yaxis()
core\chart_base::set_yaxis |
( |
chart_axis |
$axis, |
|
|
|
$index = 0 |
|
) |
| |
|
inherited |
Set an Y axis.
Note that this will override any predefined axis without warning.
- Parameters
-
chart_axis | $axis | The axis. |
int | $index | The index of the axis. |
◆ validate_axis()
core\chart_base::validate_axis |
( |
|
$xy, |
|
|
chart_axis |
$axis, |
|
|
|
$index = 0 |
|
) |
| |
|
protectedinherited |
Validate an axis.
We validate this from PHP because not doing it here could result in errors being hard to trace down. For instance, if we were to add axis at keys without another axis preceding, we would effectively contain the axes in an associative array rather than a simple array, and that would have consequences on serialisation.
- Parameters
-
string | $xy | Accepts x or y. |
chart_axis | $axis | The axis to validate. |
index | $index | The index of the axis. |
The documentation for this class was generated from the following file: