\Kendo\Dataviz\UI\DiagramShapeConnectorFill
A PHP class representing the fill setting of DiagramShapeConnector.
Methods
color
Defines the fill color of the shape connectors.
Returns
\Kendo\Dataviz\UI\DiagramShapeConnectorFill
Parameters
$value string
Example
<?php
$fill = new \Kendo\Dataviz\UI\DiagramShapeConnectorFill();
$fill->color('value');
?>
opacity
Defines the fill opacity of the shape connectors.
Returns
\Kendo\Dataviz\UI\DiagramShapeConnectorFill
Parameters
$value float
Example
<?php
$fill = new \Kendo\Dataviz\UI\DiagramShapeConnectorFill();
$fill->opacity(1);
?>