\Kendo\Dataviz\UI\ChartSeriesItemConnectors
A PHP class representing the connectors setting of ChartSeriesItem.
Methods
color
The color of the connector. Accepts a valid CSS color string, including hex and rgb.
Returns
\Kendo\Dataviz\UI\ChartSeriesItemConnectors
Parameters
$value string|\Kendo\JavaScriptFunction
Example - using string
<?php
$connectors = new \Kendo\Dataviz\UI\ChartSeriesItemConnectors();
$connectors->color('value');
?>
Example - using \Kendo\JavaScriptFunction
<?php
$connectors = new \Kendo\Dataviz\UI\ChartSeriesItemConnectors();
$connectors->color(new \Kendo\JavaScriptFunction('function() { }'));
?>
padding
The padding between the connector line and the label, and connector line and donut chart.
Returns
\Kendo\Dataviz\UI\ChartSeriesItemConnectors
Parameters
$value float
Example
<?php
$connectors = new \Kendo\Dataviz\UI\ChartSeriesItemConnectors();
$connectors->padding(1);
?>
width
The width of the connector line.
Returns
\Kendo\Dataviz\UI\ChartSeriesItemConnectors
Parameters
$value float
Example
<?php
$connectors = new \Kendo\Dataviz\UI\ChartSeriesItemConnectors();
$connectors->width(1);
?>