cancel
Showing results for 
Search instead for 
Did you mean: 

design studio text input drill down

Former Member
0 Kudos

i have the name of the country and total number of employees in a pie chart and that drill downs to areas of that country in another chart and now i have to keep a text input and enter the name of the country and the areas of the particular country has to be displayed in the second chart .i dont know how to search the entered country from the list and display in the second chart can anyone hepl please?

former_member197846
Participant
0 Kudos

Hi Gopinath,

Please refer to following videos. I think they will help you with your scenario.

https://www.youtube.com/watch?v=qXVP4zbsoFQ&feature=youtu.be

https://www.youtube.com/watch?v=r3vIGi-t1Uo&feature=youtu.be

Thanks & Regards,

Abhijit Ingale

Accepted Solutions (1)

Accepted Solutions (1)

former_member265529
Contributor
0 Kudos

Hi Gopinath,

Try using a text box separately for chart title and you will be filtering the Data source for second chart with selected value of country in chart.

You can get the country name using code

var country = DS_SECONDCHART.getFilterText("Country");

Then set the value of Title text with

TITLE_TEXT.setText("Title"+"-"+country);

So you can show the selected country in the title of the second chart.

Thanks,

Poovaasan

Former Member

Thank You @ Poovarasan Boopalan

Answers (1)

Answers (1)

TammyPowlas
Active Contributor
0 Kudos

What is your data source? What version of Design Studio are you using? Perhaps share images of what you are trying to achieve. Have you looked at other blogs on this topic? See https://blogs.sap.com/2014/06/30/enable-drill-navigation-behaviour-like-in-webi/

Former Member
0 Kudos

Thank You @ Tammy Powals