Skip to end of banner
Go to start of banner

Dashboard Components Documentation

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

Dashboard Components Documentation

Dashboard components offer a visual representation of data to the user. They consist of an SQL statement, which if needed, can be dynamically altered by adding certain filters and criteria. 

Attributes

Name
Description
Value
nameThe dashboard component name.Any
descriptionThe dashboard component description.Any
sqlThe dashboard component SQL statement (In the case the SQL is very simple).Any valid SQL statement
ejbThe ejb name.Any valid ejb name
methodThe method to call from the ejb.Any valid method name
typeThe dashboard component type.pie, stack, bar, summary
valuelabelsThe label values that the group by elements will have.<label_name>:<label_value>, ejb/<method_name>
primaryfieldlabelThe label that the primary field will have.Any
groupbyfieldlabelThe label that the group by field will have.Any
summarypageThe summary page name.Any valid summary page
orientationThe dashboard component orientation.vertical, horizontal
settingThe dashboard component settings.Settings
fieldsThe dashboard component fields.Fields

 

Example

 Dashboard Component

participantsSignups.xml
<?xml version="1.0" encoding="UTF-8"?>
<dashboardcomponent>
	<name>Rewards Participants Signups</name>
	<description>Rewards Participants Signups Bar Chart</description>
	<ejb>CRMUIRewardDashboard</ejb>
	<method>loadParticipantsSignups</method>
	<type>bar</type>
	<orientation>horizontal</orientation>
	<primaryfieldlabel>Number of Rewards Participants</primaryfieldlabel>
	<summarypage>rewards/participants</summarypage>
</dashboardcomponent>
  • No labels