<kendo:stockChart-legend-item>
The chart legend item configuration.
Example
<kendo:stockChart-legend>
<kendo:stockChart-legend-item></kendo:stockChart-legend-item>
</kendo:stockChart-legend>
Configuration Attributes
cursor java.lang.String
The cursor style of the legend item.
Example
<kendo:stockChart-legend-item cursor="cursor">
</kendo:stockChart-legend-item>
visual java.lang.String
A function that can be used to create a custom visual for the legend items. The available argument fields are: options - the item options. or createVisual - a function that can be used to get the default visual..
Example
<kendo:stockChart-legend-item visual="visual">
</kendo:stockChart-legend-item>
Event Attributes
visual String
A function that can be used to create a custom visual for the legend items. The available argument fields are: options - the item options. or createVisual - a function that can be used to get the default visual..
Example
<kendo:stockChart-legend-item visual="handle_visual">
</kendo:stockChart-legend-item>
<script>
function handle_visual(e) {
// Code to handle the visual event.
}
</script>
Event Tags
kendo:stockChart-legend-item-visual
A function that can be used to create a custom visual for the legend items. The available argument fields are: options - the item options. or createVisual - a function that can be used to get the default visual..
Example
<kendo:stockChart-legend-item>
<kendo:stockChart-legend-item-visual>
<script>
function(e) {
// Code to handle the visual event.
}
</script>
</kendo:stockChart-legend-item-visual>
</kendo:stockChart-legend-item>