New to Kendo UI for AngularStart a free 30-day trial

Represents the Kendo UI for Angular Chart Value Axis Item component.

Definition

Package:@progress/kendo-angular-charts

Selector:kendo-chart-value-axis-item

Syntax:

html
<kendo-chart>
 <kendo-chart-value-axis>
  <kendo-chart-value-axis-item>
    <kendo-chart-value-axis-item-title text="Value Axis Title"></kendo-chart-value-axis-item-title>
  </kendo-chart-value-axis-item>
 </kendo-chart-value-axis>
</kendo-chart>

Inputs

Specifies the value or array of values at which the axis crosses with another axis.

Specifies the background color of the axis.

color

string

Specifies the color of the axis.

Specifies the configuration of the crosshair.

Specifies the configuration of the labels.

Specifies the configuration of the axis line.

Specifies the configuration of the major grid lines.

Specifies the configuration of the major ticks.

majorUnit

number

Specifies the interval between major divisions.

max

any

Specifies the maximum value of the axis.

Default:

1

min

any

Specifies the minimum value of the axis.

Default:

0

Specifies the configuration of the minor grid lines.

Specifies the configuration of the minor ticks.

minorUnit

number

Specifies the interval between minor divisions.

name

string

Specifies the unique axis name. Use this name to associate a series with a value axis by using the series.axis option.

Default:

'primary'

Determines whether the Chart prevents the automatic axis range from snapping to zero. Set to false to force the automatic axis range to snap to zero.

Default:

true

Specifies the configuration of the notes.

pane

string

Specifies the name of the pane that the axis renders in.

Specifies the plot bands configuration.

reverse

boolean

Determines whether the value axis direction is reversed. By default, the categories are listed from left to right and from bottom to top.

Radar and Polar Charts do not support reverse value axes.

Default:

false

Specifies the configuration of the title.

type

"numeric" | "log"

Specifies the axis type.

The numeric value refers to a numeric axis, while log represents a logarithmic axis.

Default:

'numeric'

visible

boolean

Determines whether the Chart displays the value axis. By default, the value axis is visible.

Default:

true

Methods

Updates the component fields with the specified values and refreshes the Chart.

Use this method when the configuration values cannot be set through the template.

Parameters:changesany

An object containing the updated input fields.