In this article
Config Layout
Pulse is built to render nicely on a three columns, centered page layout. Therefore it is highly recommended to add the following to the pulse configuration:
config layout {
horizontalAlignmentMode: threeColumnsCentered
}Config Report
In the report configuration you can specify a logo for the header of Pulse, which can be a link to a image hosted on the Horizons "File Library", or it can link to an image hosted on an external site.
In addition there are some suppression settings that the Pulse reporting widgets adhere to, to hide results for confidentiality reasons if there are too few responses to a survey.
| Name | Is required | Description |
|---|---|---|
minNumberOfResponses | No | Minimum number of complete responses to the survey to show results in the pulse widgets. |
minNumberOfAnswers | No | Minimum number of answers on a question required to show results for that question. |
Override Min Number of Answers
It is possible to add one or more override limits to set different limits than the global for specific questions, by adding one or more overrideMinNumberOfAnswers blocks to config report.
| Name | Is required | Description |
|---|---|---|
limit | Yes | New limit for the questions defined. |
questions | Yes | A list of questions that should have a different limit than the default. |
Example
config report {
logo: "/isa/BDJPFRDMEYBPBKLVADAYFQCDAVIOEQJR/Confirmit%20Demo/confirmit3Dlogo.jpg?resize=200%2C50"
minNumberOfResponses: 10
minNumberOfAnswers: 8
overrideMinNumberOfAnswers {
limit: 15
questions: survey:q1, survey:q2, survey:q3, survey:q8
}
overrideMinNumberOfAnswers {
limit: 4
questions: survey:q4, survey:q5
}
} //config report close