\Kendo\Dataviz\UI\SparklineSeriesItemLabels

A PHP class representing the labels setting of SparklineSeriesItem.

Methods

align

Defines the alignment of the labels.Available for pie series.

Returns

\Kendo\Dataviz\UI\SparklineSeriesItemLabels

Parameters

$value string

Example

<?php
$labels = new \Kendo\Dataviz\UI\SparklineSeriesItemLabels();
$labels->align('value');
?>

background

The background color of the labels.

Returns

\Kendo\Dataviz\UI\SparklineSeriesItemLabels

Parameters

$value string|\Kendo\JavaScriptFunction

Example - using string

<?php
$labels = new \Kendo\Dataviz\UI\SparklineSeriesItemLabels();
$labels->background('value');
?>

Example - using \Kendo\JavaScriptFunction

<?php
$labels = new \Kendo\Dataviz\UI\SparklineSeriesItemLabels();
$labels->background(new \Kendo\JavaScriptFunction('function() { }'));
?>

border

The border of the labels.

Returns

\Kendo\Dataviz\UI\SparklineSeriesItemLabels

Parameters

$value \Kendo\Dataviz\UI\SparklineSeriesItemLabelsBorder|array

Example - using \Kendo\Dataviz\UI\SparklineSeriesItemLabelsBorder

<?php
$labels = new \Kendo\Dataviz\UI\SparklineSeriesItemLabels();
$border = new \Kendo\Dataviz\UI\SparklineSeriesItemLabelsBorder();
$color = 'value';
$border->color($color);
$labels->border($border);
?>

Example - using array

<?php
$labels = new \Kendo\Dataviz\UI\SparklineSeriesItemLabels();
$color = 'value';
$labels->border(array('color' => $color));
?>

color

The text color of the labels.

Returns

\Kendo\Dataviz\UI\SparklineSeriesItemLabels

Parameters

$value string|\Kendo\JavaScriptFunction

Example - using string

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

Example - using \Kendo\JavaScriptFunction

<?php
$labels = new \Kendo\Dataviz\UI\SparklineSeriesItemLabels();
$labels->color(new \Kendo\JavaScriptFunction('function() { }'));
?>

distance

The distance of the labels.Available for pie series.

Returns

\Kendo\Dataviz\UI\SparklineSeriesItemLabels

Parameters

$value float

Example

<?php
$labels = new \Kendo\Dataviz\UI\SparklineSeriesItemLabels();
$labels->distance(1);
?>

font

The font style of the labels.

Returns

\Kendo\Dataviz\UI\SparklineSeriesItemLabels

Parameters

$value string|\Kendo\JavaScriptFunction

Example - using string

<?php
$labels = new \Kendo\Dataviz\UI\SparklineSeriesItemLabels();
$labels->font('value');
?>

Example - using \Kendo\JavaScriptFunction

<?php
$labels = new \Kendo\Dataviz\UI\SparklineSeriesItemLabels();
$labels->font(new \Kendo\JavaScriptFunction('function() { }'));
?>

format

The format of the labels.

Returns

\Kendo\Dataviz\UI\SparklineSeriesItemLabels

Parameters

$value string|\Kendo\JavaScriptFunction

Example - using string

<?php
$labels = new \Kendo\Dataviz\UI\SparklineSeriesItemLabels();
$labels->format('value');
?>

Example - using \Kendo\JavaScriptFunction

<?php
$labels = new \Kendo\Dataviz\UI\SparklineSeriesItemLabels();
$labels->format(new \Kendo\JavaScriptFunction('function() { }'));
?>

margin

The margin of the labels.

Returns

\Kendo\Dataviz\UI\SparklineSeriesItemLabels

Parameters

$value float|

Example - using float

<?php
$labels = new \Kendo\Dataviz\UI\SparklineSeriesItemLabels();
$labels->margin(1);
?>

padding

The padding of the labels.

Returns

\Kendo\Dataviz\UI\SparklineSeriesItemLabels

Parameters

$value float|

Example - using float

<?php
$labels = new \Kendo\Dataviz\UI\SparklineSeriesItemLabels();
$labels->padding(1);
?>

position

Defines the position of the labels.

Returns

\Kendo\Dataviz\UI\SparklineSeriesItemLabels

Parameters

$value string|\Kendo\JavaScriptFunction

Example - using string

<?php
$labels = new \Kendo\Dataviz\UI\SparklineSeriesItemLabels();
$labels->position('value');
?>

Example - using \Kendo\JavaScriptFunction

<?php
$labels = new \Kendo\Dataviz\UI\SparklineSeriesItemLabels();
$labels->position(new \Kendo\JavaScriptFunction('function() { }'));
?>

template

The template which renders the chart series label.The fields which can be used in the template are: category - the category name. Available for area, bar, column, bubble, donut, line and pie series.; dataItem - the original data item used to construct the point. Will be null if binding to array.; percentage - the point value represented as a percentage value. Available only for donut, pie and 100% stacked charts.; series - the data series or value - the point value. Can be a number or object containing each bound field..

Returns

\Kendo\Dataviz\UI\SparklineSeriesItemLabels

Parameters

$value string|\Kendo\JavaScriptFunction

Example - using string

<?php
$labels = new \Kendo\Dataviz\UI\SparklineSeriesItemLabels();
$labels->template('value');
?>

Example - using \Kendo\JavaScriptFunction

<?php
$labels = new \Kendo\Dataviz\UI\SparklineSeriesItemLabels();
$labels->template(new \Kendo\JavaScriptFunction('function() { }'));
?>

visible

The visibility of the labels.

Returns

\Kendo\Dataviz\UI\SparklineSeriesItemLabels

Parameters

$value boolean|\Kendo\JavaScriptFunction

Example - using boolean

<?php
$labels = new \Kendo\Dataviz\UI\SparklineSeriesItemLabels();
$labels->visible(true);
?>

Example - using \Kendo\JavaScriptFunction

<?php
$labels = new \Kendo\Dataviz\UI\SparklineSeriesItemLabels();
$labels->visible(new \Kendo\JavaScriptFunction('function() { }'));
?>
In this article
Not finding the help you need?