I have implemented a kendo line chart which shows schedule for three iterations I1,E1 and C1. Usually in the given kendo line chart examples details are displayed when mouse hovered. How can I display the details such that the details are always available(irrespective of whether the mouse is hovered or not). Please help me in solving this issue. Thanks in advance.
Asked
Active
Viewed 155 times
1 Answers
0
On the series or seriesDefaults use the labels:
labels: {
visible: true
}
or in MVC:
.Labels(labels => labels
.Template("#= category #: \n #= value#%")
.Visible(true)
)
If you want to control the text in the label, use the template property of the labels object:

ezanker
- 24,628
- 1
- 20
- 35