Hi,
How can I show the category with the value in the tooltip ? I used the template property for this as follows. The template property is not working in the sparkline but template property is running in the chart.
@(Html.Kendo().Sparkline<VKSWeb.Models.RasyoAnaliz.RasyoTum>()
.Name("turkiye-girisim-sparkline")
.Type(SparklineType.Area)
.Series(series => series
.Line(field => field.TurkiyeGirisimSayisi).Color("\\#639514"))
.SeriesDefaults(sd => sd.Line()
.Width(2)
.Tooltip(tooltip => tooltip.Visible(true)
.Format("{0} Adet")
.Template("${category} - ${value}")))
.CategoryAxis(categoryAxis => categoryAxis
.Crosshair(crossHair => crossHair.Visible(true)))
.ToClientTemplate())