Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.



Sets the hexadecimal color value for negative deviations
Div
classpdfExportLandscape

Script Documentation of graphomate trellis 1.x for SAP BusinessObjects Design Studio 

Rev 1.0 as of August 2016

Div
classnoPrint

PDF Export


Introduction

The [extension] supports the SAP Design Studio scripting language. This enables the user to dynamically interact with the add-on during runtime. Script commands include manipulation of the [extension] layout or setting of data. This document features a list of all currently available script commands. Please do not hesitate to contact us if any feature is missing. For this, you can use our online form.


Events

The following events are available. User-made scripts can be deposited on the Property Sheet under the group Events.

Event NameDescription
On Element Clicked

Is triggered when the user clicks on an element of the chart at runtime. In order to allow a drilldown, it is necessary to react on the user input at this point. The return values of the following functions are updated at the moment of the event:

  • getSelectedMember() 


Functions

The following functions are available. They can be addressed in the scripting editor of Design Studio. We differentiate between getter and setter functions as they get information from the extension or set its properties.


GRAPHOMATEBUBBLE_1 .getPadding(
Getter NameExampleReturn typeExample Return ValueDescription
getBadColorgetSelectedMember(Dimension dimensionKey)

GRAPHOMATEBUBBLEGRAPHOMATETRELLIS_1.getBadColor();

String#FF0000Returns the hexadecimal color value of bad deviations.getPadding()

getSelectedMember("0D_NWI_RCOD");

intMember25Returns the chart padding in [px].
getUseFormattedData()GRAPHOMATEBUBBLE_1 .getUseFormattedData();booleanfalseReturns whether the preformatted values from the data source are used in the chart.
Setter NameExampleDescription
setBadColor(String value)GRAPHOMATEBUBBLE_1 .setBadColor("#FF0000");

After the user clicked on an element in the trellis, this function returns the member of the specified dimension dimensionKey. The member provides different properties such as text, internalKey and externalKey. Only dimensions specified in the module configurations are available.