\Kendo\Dataviz\UI\DiagramShapeConnectorDefaultsHover

A PHP class representing the hover setting of DiagramShapeConnectorDefaults.

Methods

fill

Defines the hover fill options of the shape connectors.

Returns

\Kendo\Dataviz\UI\DiagramShapeConnectorDefaultsHover

Parameters

$value string|\Kendo\Dataviz\UI\DiagramShapeConnectorDefaultsHoverFill|array

Example - using string

<?php
$hover = new \Kendo\Dataviz\UI\DiagramShapeConnectorDefaultsHover();
$hover->fill('value');
?>

Example - using \Kendo\Dataviz\UI\DiagramShapeConnectorDefaultsHoverFill

<?php
$hover = new \Kendo\Dataviz\UI\DiagramShapeConnectorDefaultsHover();
$fill = new \Kendo\Dataviz\UI\DiagramShapeConnectorDefaultsHoverFill();
$color = 'value';
$fill->color($color);
$hover->fill($fill);
?>

Example - using array

<?php
$hover = new \Kendo\Dataviz\UI\DiagramShapeConnectorDefaultsHover();
$color = 'value';
$hover->fill(array('color' => $color));
?>

stroke

Defines the hover stroke options of the shape connectors.

Returns

\Kendo\Dataviz\UI\DiagramShapeConnectorDefaultsHover

Parameters

$value string|\Kendo\Dataviz\UI\DiagramShapeConnectorDefaultsHoverStroke|array

Example - using string

<?php
$hover = new \Kendo\Dataviz\UI\DiagramShapeConnectorDefaultsHover();
$hover->stroke('value');
?>

Example - using \Kendo\Dataviz\UI\DiagramShapeConnectorDefaultsHoverStroke

<?php
$hover = new \Kendo\Dataviz\UI\DiagramShapeConnectorDefaultsHover();
$stroke = new \Kendo\Dataviz\UI\DiagramShapeConnectorDefaultsHoverStroke();
$color = 'value';
$stroke->color($color);
$hover->stroke($stroke);
?>

Example - using array

<?php
$hover = new \Kendo\Dataviz\UI\DiagramShapeConnectorDefaultsHover();
$color = 'value';
$hover->stroke(array('color' => $color));
?>
In this article
Not finding the help you need?