<kendo:chart-xAxisItem-notes>
The x axis notes configuration.
Example
<kendo:chart-xAxisItem>
<kendo:chart-xAxisItem-notes></kendo:chart-xAxisItem-notes>
</kendo:chart-xAxisItem>
Configuration Attributes
position java.lang.String
The position of the x axis note. "top" - The note is positioned on the top.; "bottom" - The note is positioned on the bottom.; "left" - The note is positioned on the left. or "right" - The note is positioned on the right..
Example
<kendo:chart-xAxisItem-notes position="position">
</kendo:chart-xAxisItem-notes>
visual java.lang.String
A function that can be used to create a custom visual for the notes. The available argument fields are: rect - the kendo.geometry.Rect that defines the note target rect.; sender - the chart instance (may be undefined).; options - the note options.; createVisual - a function that can be used to get the default visual. or value - the note value..
Example
<kendo:chart-xAxisItem-notes visual="visual">
</kendo:chart-xAxisItem-notes>
Configuration JSP Tags
kendo:chart-xAxisItem-notes-data
The items of the notes.
More documentation is available at kendo:chart-xAxisItem-notes-data.
Example
<kendo:chart-xAxisItem-notes>
<kendo:chart-xAxisItem-notes-data></kendo:chart-xAxisItem-notes-data>
</kendo:chart-xAxisItem-notes>
kendo:chart-xAxisItem-notes-icon
The icon of the notes.
More documentation is available at kendo:chart-xAxisItem-notes-icon.
Example
<kendo:chart-xAxisItem-notes>
<kendo:chart-xAxisItem-notes-icon></kendo:chart-xAxisItem-notes-icon>
</kendo:chart-xAxisItem-notes>
kendo:chart-xAxisItem-notes-label
The label of the notes.
More documentation is available at kendo:chart-xAxisItem-notes-label.
Example
<kendo:chart-xAxisItem-notes>
<kendo:chart-xAxisItem-notes-label></kendo:chart-xAxisItem-notes-label>
</kendo:chart-xAxisItem-notes>
kendo:chart-xAxisItem-notes-line
The line of the notes.
More documentation is available at kendo:chart-xAxisItem-notes-line.
Example
<kendo:chart-xAxisItem-notes>
<kendo:chart-xAxisItem-notes-line></kendo:chart-xAxisItem-notes-line>
</kendo:chart-xAxisItem-notes>
Event Attributes
visual String
A function that can be used to create a custom visual for the notes. The available argument fields are: rect - the kendo.geometry.Rect that defines the note target rect.; sender - the chart instance (may be undefined).; options - the note options.; createVisual - a function that can be used to get the default visual. or value - the note value..
Example
<kendo:chart-xAxisItem-notes visual="handle_visual">
</kendo:chart-xAxisItem-notes>
<script>
function handle_visual(e) {
// Code to handle the visual event.
}
</script>
Event Tags
kendo:chart-xAxisItem-notes-visual
A function that can be used to create a custom visual for the notes. The available argument fields are: rect - the kendo.geometry.Rect that defines the note target rect.; sender - the chart instance (may be undefined).; options - the note options.; createVisual - a function that can be used to get the default visual. or value - the note value..
Example
<kendo:chart-xAxisItem-notes>
<kendo:chart-xAxisItem-notes-visual>
<script>
function(e) {
// Code to handle the visual event.
}
</script>
</kendo:chart-xAxisItem-notes-visual>
</kendo:chart-xAxisItem-notes>