I created a Kendorsklin chart in a grid, I created two light lines on top of each other, but when I hover over the spark line, the tooltip will not display correctly (Actually, the tooltip appears, but it is unreadable and messy)
jsfiddle code
$("#sparkline").kendoSparkline({ type: "area", series: [{ name: "World", data: [15.7, 16.7, 20, 23.5, 26.6, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5, 3.5], field: "Rain", }, { name: 'New York', data: [0.7, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5], field: "Rain", }], });
Thank you