Home > Back-end >  What is the feature called in Material UI, that when clicking on it makes a component appear without
What is the feature called in Material UI, that when clicking on it makes a component appear without

Time:06-25

I am new to material UI and I want to design something like this. But I am unable to find the name of the feature that helps accomplish this.

enter image description here

When I click on option 1 I want to display its market summary without refreshing the rest of the components on the page. Is it just a button that helps accomplish this? Any help is appreciated. Thanks.

CodePudding user response:

I think you are referring to vertical tabs. Without refreshing the page means, you have to hard-code your chart data or you need to call an ajax request to fetch data when the user switch to that tab (option 1).

  • Related