<kendo:chart-yAxisItem-plotBand-label>
The label configuration of the plotband.
Example
<kendo:chart-yAxisItem-plotBand>
<kendo:chart-yAxisItem-plotBand-label></kendo:chart-yAxisItem-plotBand-label>
</kendo:chart-yAxisItem-plotBand>
Configuration Attributes
align java.lang.String
The position of the plotband label.The supported values are: "left" - the plotband label is positioned on the left; "right" - the plotband label is positioned on the right or "center" - the plotband label is positioned in the center.
Example
<kendo:chart-yAxisItem-plotBand-label align="align">
</kendo:chart-yAxisItem-plotBand-label>
background java.lang.String
The background color of the label. Accepts a valid CSS color string, including hex and rgb.
Example
<kendo:chart-yAxisItem-plotBand-label background="background">
</kendo:chart-yAxisItem-plotBand-label>
color java.lang.String
The text color of the label. Accepts a valid CSS color string, including hex and rgb.
Example
<kendo:chart-yAxisItem-plotBand-label color="color">
</kendo:chart-yAxisItem-plotBand-label>
font java.lang.String
The font style of the label.
Example
<kendo:chart-yAxisItem-plotBand-label font="font">
</kendo:chart-yAxisItem-plotBand-label>
margin float
The margin of the label. A numeric value will set all margins. Further configuration is available via kendo:chart-yAxisItem-plotBand-label-margin.
Example
<kendo:chart-yAxisItem-plotBand-label margin="margin">
</kendo:chart-yAxisItem-plotBand-label>
padding float
The padding of the label. A numeric value will set all paddings. Further configuration is available via kendo:chart-yAxisItem-plotBand-label-padding.
Example
<kendo:chart-yAxisItem-plotBand-label padding="padding">
</kendo:chart-yAxisItem-plotBand-label>
position java.lang.String
The position of the label.The supported values are: "top" - the axis label is positioned on the top; "bottom" - the axis label is positioned on the bottom or "center" - the axis label is positioned in the center.
Example
<kendo:chart-yAxisItem-plotBand-label position="position">
</kendo:chart-yAxisItem-plotBand-label>
rotation float
The rotation angle of the label. By default the label is not rotated.
Example
<kendo:chart-yAxisItem-plotBand-label rotation="rotation">
</kendo:chart-yAxisItem-plotBand-label>
text java.lang.String
The text of the label.
Example
<kendo:chart-yAxisItem-plotBand-label text="text">
</kendo:chart-yAxisItem-plotBand-label>
visible boolean
If set to false the chart will not display the label.
Example
<kendo:chart-yAxisItem-plotBand-label visible="visible">
</kendo:chart-yAxisItem-plotBand-label>
visual java.lang.String
A function that can be used to create a custom visual for the label. The available argument fields are: text - the label text.; rect - the kendo.geometry.Rect that defines where the visual should be rendered.; sender - the chart instance (may be undefined).; options - the label options. or createVisual - a function that can be used to get the default visual..
Example
<kendo:chart-yAxisItem-plotBand-label visual="visual">
</kendo:chart-yAxisItem-plotBand-label>
Configuration JSP Tags
kendo:chart-yAxisItem-plotBand-label-border
The border of the label.
More documentation is available at kendo:chart-yAxisItem-plotBand-label-border.
Example
<kendo:chart-yAxisItem-plotBand-label>
<kendo:chart-yAxisItem-plotBand-label-border></kendo:chart-yAxisItem-plotBand-label-border>
</kendo:chart-yAxisItem-plotBand-label>
kendo:chart-yAxisItem-plotBand-label-margin
The margin of the label. A numeric value will set all margins.
More documentation is available at kendo:chart-yAxisItem-plotBand-label-margin.
Example
<kendo:chart-yAxisItem-plotBand-label>
<kendo:chart-yAxisItem-plotBand-label-margin></kendo:chart-yAxisItem-plotBand-label-margin>
</kendo:chart-yAxisItem-plotBand-label>
kendo:chart-yAxisItem-plotBand-label-padding
The padding of the label. A numeric value will set all paddings.
More documentation is available at kendo:chart-yAxisItem-plotBand-label-padding.
Example
<kendo:chart-yAxisItem-plotBand-label>
<kendo:chart-yAxisItem-plotBand-label-padding></kendo:chart-yAxisItem-plotBand-label-padding>
</kendo:chart-yAxisItem-plotBand-label>
Event Attributes
visual String
A function that can be used to create a custom visual for the label. The available argument fields are: text - the label text.; rect - the kendo.geometry.Rect that defines where the visual should be rendered.; sender - the chart instance (may be undefined).; options - the label options. or createVisual - a function that can be used to get the default visual..
Example
<kendo:chart-yAxisItem-plotBand-label visual="handle_visual">
</kendo:chart-yAxisItem-plotBand-label>
<script>
function handle_visual(e) {
// Code to handle the visual event.
}
</script>
Event Tags
kendo:chart-yAxisItem-plotBand-label-visual
A function that can be used to create a custom visual for the label. The available argument fields are: text - the label text.; rect - the kendo.geometry.Rect that defines where the visual should be rendered.; sender - the chart instance (may be undefined).; options - the label options. or createVisual - a function that can be used to get the default visual..
Example
<kendo:chart-yAxisItem-plotBand-label>
<kendo:chart-yAxisItem-plotBand-label-visual>
<script>
function(e) {
// Code to handle the visual event.
}
</script>
</kendo:chart-yAxisItem-plotBand-label-visual>
</kendo:chart-yAxisItem-plotBand-label>