Is it possible to modify the tab control to where the tab changes are controlled by a Dropdown instead of having individual tabs?
Tabs are great for small numbers of items .. but when you have 25 locations.. tabs don't work so well.
On another note is it possible to control how chart legends are rendered? same issue as above when you want to chart 25 series for each location for a year ... what happens?
Indeed having 25 tabs is not ideal. You can use the SelectedIndex property of the RadzenTabs to change the current tab but it will still render all 25 tab items (unless you hide them with CSS).
Same goes with the Chart legend. You should probably just set the Visible property of the legend to false
and render your own custom legend.
If i get a chance i will rework my example of how I did this with a the sample tab control in the docs.
I am not sure you are understanding me.
I rendered the tabs as buttons in a dropdown and then all the other code was the same (instead of a bunch of horizontal buttons there was one dropdown with N buttons inside it ) which set the active tab.
I figured as much for the chart.. what functionality will I loose.. turning on and off series?