How do I remove a particular series item from client side using javascript.
I am adding the series items from the code behind.
Dim planSeries As ColumnSeries
planSeries = .PlotArea.Series(0)
planSeries .Items.Add(New SeriesItem(Session("PlanTitle")))
As shown in the attached screenshot, RadCombobox is populated with the names of all the series items. On ClientClick of a Radbuttion, I want the selected series item to be removed from the chart.
Any help in this regard is highly appreciated.