\Kendo\Dataviz\UI\QRCodeOverlay

A PHP class representing the overlay setting of QRCode.

Methods

height

The height of the overlay in pixels.

Returns

\Kendo\Dataviz\UI\QRCodeOverlay

Parameters

$value float

Example

<?php
$overlay = new \Kendo\Dataviz\UI\QRCodeOverlay();
$overlay->height(1);
?>

imageUrl

The URL of the displayed overlay image.

Returns

\Kendo\Dataviz\UI\QRCodeOverlay

Parameters

$value string

Example

<?php
$overlay = new \Kendo\Dataviz\UI\QRCodeOverlay();
$overlay->imageUrl('value');
?>

type

Available options are image and swiss. When set to image you have to specify the url source of the image. If set to swiss a Swiss QR Code is created.

Returns

\Kendo\Dataviz\UI\QRCodeOverlay

Parameters

$value string

Example

<?php
$overlay = new \Kendo\Dataviz\UI\QRCodeOverlay();
$overlay->type('value');
?>

width

The width of the overlay in pixels.

Returns

\Kendo\Dataviz\UI\QRCodeOverlay

Parameters

$value float

Example

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