Skip to Content
Author's profile photo vijaykumar ijeri

Bubble chart creation and detail view based on selection

In this Blog I will explain:

1)  How to create a bubble chart in Design studio.

2) Based on selection of a particular bubble filter and show the data in cross tab in detail.

3) A button used to reset the filters and show all the data again.

/wp-content/uploads/2015/10/1_811742.png

/wp-content/uploads/2015/10/2_811743.png

/wp-content/uploads/2015/10/3_811751.png

/wp-content/uploads/2015/10/4_811752.png

/wp-content/uploads/2015/10/5_811753.png

/wp-content/uploads/2015/10/6_811757.png

/wp-content/uploads/2015/10/7_811758.png

/wp-content/uploads/2015/10/9_811760.png

/wp-content/uploads/2015/10/9_1_1_811770.png

/wp-content/uploads/2015/10/script_811761.png

The script above filters the data source “DS_1” based on the selection.I have used the following script.

Datasource.setFilter(dimesion,value);

So whatever you select from the bubble chart only that particular set of record will be appearing later and rest all will be filtered out.

setFilter excepts two input parameters, dimension (can be any attribute or dimension from your data source, in my example it is “Material”) value is the Material value say the are few materials like (chair, table etc) you can add chair here as hard coding or we can get the selected dynamically using the follow script. Chart_1.getSelectedMember(Material.text).

So the entire script looks this way

Datasource.setFilter(Material,Chart_1.getSelectedMember(Material.text));

/wp-content/uploads/2015/10/result_report_811771.png

So once you select any one bubble out of the available only that is seen in the bubble chart as well as cross tab, since we filter the datasource and the binding for both the cross tab and bubble chart is using the same datasource i.e DS_1

/wp-content/uploads/2015/10/end_result_without_button_811772.png

After this if we want to see all the items, then there is need of refreshing the report. In order to avoid this we will see how to clear the filter ans show the entire data again for the selection.

Hope it was useful for you. Let me know your views and comments. Happy reading and learning.

Design studio rocks. I am still exploring the possibilities.

Thanks & Regards,

Vijay

Assigned Tags

      2 Comments
      You must be Logged on to comment or reply to a post.
      Author's profile photo Sreekanth Baby Usha Sukumara Pillai
      Sreekanth Baby Usha Sukumara Pillai

      Thanks Vijay for sharing the info...

      Author's profile photo vijaykumar ijeri
      vijaykumar ijeri
      Blog Post Author

      Thanks Sreekanth 🙂