I'm dealing with a JSON data set that I want to use to generate a grid. In addition to the grid, I also need to display vertical lines above it based on certain values:
var arr = [];
arr= [
{"Measure":"Air Pollution","Rank":"1","Value":"15.5"},
{"Measure":"Water Pollution","Rank":"2","Value":"13.5"},
{"Measure":"Soil Erosion","Rank":"3","Value":"10.5"}
]
My goal is to create these vertical bars corresponding to the "Value" field. Since there are 3 values, there will be 3 vertical bars. When a row in the grid is selected, the associated vertical bar should also be highlighted. Likewise, selecting a vertical bar should highlight the corresponding row in the grid. I'm comfortable creating the grid with KendoUI, but struggling with implementing the vertical bars and selection functionality. Any ideas or suggestions would be greatly appreciated.
Thank you.