\Kendo\UI\RatingLabel
A PHP class representing the label setting of Rating.
Methods
template
Returns
\Kendo\UI\RatingLabel
Parameters
$value string|\Kendo\JavaScriptFunction
Example - using string
<?php
$label = new \Kendo\UI\RatingLabel();
$label->template('value');
?>
Example - using \Kendo\JavaScriptFunction
<?php
$label = new \Kendo\UI\RatingLabel();
$label->template(new \Kendo\JavaScriptFunction('function() { }'));
?>