Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
Former Member
0 Kudos

Hi guys,

  Here is BIAL coding for zoom in and zoom out for chart in SAP DESIGN STUDIO 1.6

For zoom in chart, first place the icon on dashboard and go to on click and paste the coding below

CHART_1.setVisible (false);

GRID_LAYOUT_1.setVisible(true);

CHART_2.setVisible (true);

GRID_LAYOUT_1.setVisible(false);

ZOOMIN_PLUS.setVisible (false);

GRID_LAYOUT_1.setVisible(true);

ZOOM_MINUS.setVisible (true);

GRID_LAYOUT_1.setVisible(false);

and for zoom out again place the other icon and paste the coding below

CHART_1.setVisible (true);

GRID_LAYOUT_1.setVisible(false);

CHART_2.setVisible (false);

GRID_LAYOUT_1.setVisible(true);

ZOOM_MINUS.setVisible (false);

GRID_LAYOUT_1.setVisible(true);

ZOOMIN_PLUS.setVisible (true);

GRID_LAYOUT_1.setVisible(false);

Regards,

Keerthy Vasan

Labels in this area