\Kendo\Dataviz\UI\DiagramConnectionDefaultsStartCapStroke

A PHP class representing the stroke setting of DiagramConnectionDefaultsStartCap.

Methods

color

The connection start cap stroke color.

Returns

\Kendo\Dataviz\UI\DiagramConnectionDefaultsStartCapStroke

Parameters

$value string

Example

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

dashType

The connection start cap stroke dash type.The following dash types are supported: "dash" - A line that consists of dashes; "dashDot" - A line that consists of a repeating pattern of dash-dot; "dot" - A line that consists of dots; "longDash" - A line that consists of a repeating pattern of long-dash; "longDashDot" - A line that consists of a repeating pattern of long-dash-dot; "longDashDotDot" - A line that consists of a repeating pattern of long-dash-dot-dot or "solid" - A solid line.

Returns

\Kendo\Dataviz\UI\DiagramConnectionDefaultsStartCapStroke

Parameters

$value string

Example

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

width

The connection start cap stroke width.

Returns

\Kendo\Dataviz\UI\DiagramConnectionDefaultsStartCapStroke

Parameters

$value float

Example

<?php
$stroke = new \Kendo\Dataviz\UI\DiagramConnectionDefaultsStartCapStroke();
$stroke->width(1);
?>
In this article
Not finding the help you need?