Increasing the size of chart
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