ValueAxis.title
configurationThe title configuration of the value axis.
The valueAxis.title.text option must be set in order to display the title.
valueAxis.title
ObjectThe background color of the title. Accepts a valid CSS color string, including hex and rgb.
valueAxis.title.border
ObjectThe border of the title.
valueAxis.title.color
StringThe text color of the title. Accepts a valid CSS color string, including hex and rgb.
valueAxis.title.font
StringThe font style of the title.
Default: "16px Arial,Helvetica,sans-serif"
valueAxis.title.margin
Number|ObjectThe margin of the title. A numeric value will set all margins.
Default: 5
valueAxis.title.padding
Number|ObjectThe padding of the title. A numeric value will set all paddings.
Default: 0
valueAxis.title.position
StringThe position of the title.
The supported values are:
- "top" - the axis title is positioned on the top (applicable to vertical axis)
- "bottom" - the axis title is positioned on the bottom (applicable to vertical axis)
- "left" - the axis title is positioned on the left (applicable to horizontal axis)
- "right" - the axis title is positioned on the right (applicable to horizontal axis)
- "center" - the axis title is positioned in the center
Default: "center"
valueAxis.title.rotation
NumberThe rotation angle of the title. By default the title is not rotated.
Default: 0
valueAxis.title.text
StringThe text of the title.
The text can be split into multiple lines by using line feed characters ("\n").
valueAxis.title.visible
BooleanIf set to true the chart will display the value axis title. By default the value axis title is visible.
Default: true
valueAxis.title.visual
FunctionA function that can be used to create a custom visual for the title. The available argument fields are:
- text - the label text.
- rect - the
kendo.geometry.Rectthat defines where the visual should be rendered. - sender - the chart instance (may be undefined).
- options - the label options.
- createVisual - a function that can be used to get the default visual.