\Kendo\Dataviz\UI\ChartValueAxisItemLabels

A PHP class representing the labels setting of ChartValueAxisItem.

Methods

background

The background color of the labels. Accepts a valid CSS color string, including hex and rgb.

Returns

\Kendo\Dataviz\UI\ChartValueAxisItemLabels

Parameters

$value string

Example

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

border

The border of the labels.

Returns

\Kendo\Dataviz\UI\ChartValueAxisItemLabels

Parameters

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

Example - using \Kendo\Dataviz\UI\ChartValueAxisItemLabelsBorder

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

Example - using array

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

color

The text color of the labels. Accepts a valid CSS color string, including hex and rgb.

Returns

\Kendo\Dataviz\UI\ChartValueAxisItemLabels

Parameters

$value string

Example

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

font

The font style of the labels. Accepts a valid CSS color string, for example "20px 'Courier New'".

Returns

\Kendo\Dataviz\UI\ChartValueAxisItemLabels

Parameters

$value string

Example

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

format

The format used to display the labels. Uses kendo.format. Contains one placeholder ("{0}") which represents the category value.

Returns

\Kendo\Dataviz\UI\ChartValueAxisItemLabels

Parameters

$value string

Example

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

margin

The margin of the labels. A numeric value will set all margins.

Returns

\Kendo\Dataviz\UI\ChartValueAxisItemLabels

Parameters

$value float|\Kendo\Dataviz\UI\ChartValueAxisItemLabelsMargin|array

Example - using float

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

Example - using \Kendo\Dataviz\UI\ChartValueAxisItemLabelsMargin

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

Example - using array

<?php
$labels = new \Kendo\Dataviz\UI\ChartValueAxisItemLabels();
$bottom = 1;
$labels->margin(array('bottom' => $bottom));
?>

mirror

If set to true the chart will mirror the axis labels and ticks. If the labels are normally on the left side of the axis, mirroring the axis will render them to the right.

Returns

\Kendo\Dataviz\UI\ChartValueAxisItemLabels

Parameters

$value boolean

Example

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

padding

The padding of the labels. A numeric value will set all margins.

Returns

\Kendo\Dataviz\UI\ChartValueAxisItemLabels

Parameters

$value float|\Kendo\Dataviz\UI\ChartValueAxisItemLabelsPadding|array

Example - using float

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

Example - using \Kendo\Dataviz\UI\ChartValueAxisItemLabelsPadding

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

Example - using array

<?php
$labels = new \Kendo\Dataviz\UI\ChartValueAxisItemLabels();
$bottom = 1;
$labels->padding(array('bottom' => $bottom));
?>

position

The position of the axis labels. By default, labels are positioned next to the axis. When position is set to end, the labels are placed at the end of the crossing axis— typically, at the top or right end of the Chart unless the crossing axis was reversed. or When position is set to start, the labels are placed at the start of the crossing axis— typically, at the left or bottom end of the Chart unless the crossing axis was reversed..

Returns

\Kendo\Dataviz\UI\ChartValueAxisItemLabels

Parameters

$value string

Example

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

rotation

The rotation angle (in degrees) of the labels. By default the labels are not rotated. Angles increase clockwise and zero is to the left. Negative values are acceptable. Can be set to "auto" if the axis is horizontal in which case the labels will be rotated only if the slot size is not sufficient for the entire labels.

Returns

\Kendo\Dataviz\UI\ChartValueAxisItemLabels

Parameters

$value float|string|\Kendo\Dataviz\UI\ChartValueAxisItemLabelsRotation|array

Example - using float

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

Example - using string

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

Example - using \Kendo\Dataviz\UI\ChartValueAxisItemLabelsRotation

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

Example - using array

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

skip

The number of labels to skip. By default no labels are skipped.

Returns

\Kendo\Dataviz\UI\ChartValueAxisItemLabels

Parameters

$value float

Example

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

step

Label rendering step. Every n-th label is rendered where n is the step

Returns

\Kendo\Dataviz\UI\ChartValueAxisItemLabels

Parameters

$value float

Example

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

template

The template which renders the labels.The fields which can be used in the template are: value - the value value.

Returns

\Kendo\Dataviz\UI\ChartValueAxisItemLabels

Parameters

$value string|\Kendo\JavaScriptFunction

Example - using string

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

Example - using \Kendo\JavaScriptFunction

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

visible

If set to true the chart will display the value axis labels. By default the category axis labels are visible.

Returns

\Kendo\Dataviz\UI\ChartValueAxisItemLabels

Parameters

$value boolean

Example

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

visual

A function that can be used to create a custom visual for the labels. The available argument fields are: createVisual - a function that can be used to get the default visual.; culture - the default culture (if set) on the label; format - the default format of the label; options - the label options.; rect - the kendo.geometry.Rect that defines where the visual should be rendered.; sender - the chart instance (may be undefined).; text - the label text. or value - the category value.

Returns

\Kendo\Dataviz\UI\ChartValueAxisItemLabels

Parameters

$value \Kendo\JavaScriptFunction

Example

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