Skip to content

Commit

Permalink
updated survey-analytics docs [azurepipelines skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-kurmanov committed Aug 20, 2024
1 parent 34a808f commit ee27799
Show file tree
Hide file tree
Showing 13 changed files with 644 additions and 13 deletions.
2 changes: 1 addition & 1 deletion docs/get-started-angular.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This step-by-step tutorial will help you get started with SurveyJS Dashboard in

As a result, you will create the following dashboard:

<iframe src="/proxy/github/code-examples/get-started-analytics/knockout/index.html"
<iframe src="/proxy/github/code-examples/get-started-analytics/html-css-js/index.html"
style="width:100%; border:0; border-radius: 4px; overflow:hidden;"
></iframe>
Expand Down
352 changes: 352 additions & 0 deletions docs/get-started-html-css-javascript.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,352 @@
---
title: Add SurveyJS Dashboard to Your JavaScript Application | Step-by-Step Tutorial
description: Learn how to add SurveyJS Dashboard to your JavaScript application with this comprehensive step-by-step tutorial. Enhance your self-hosted surveying tool with powerful survey analytics capabilities.
---

# Add SurveyJS Dashboard to a JavaScript Application

This step-by-step tutorial will help you get started with SurveyJS Dashboard in an application built with HTML, CSS, and JavaScript (without frontend frameworks). As a result, you will create a dashboard displayed below:

<iframe src="/proxy/github/code-examples/get-started-analytics/html-css-js/index.html"
style="width:100%; border:0; border-radius: 4px; overflow:hidden;"
></iframe>
[View Full Code on GitHub](https://github.com/surveyjs/code-examples/tree/main/get-started-analytics/html-css-js (linkStyle))

## Link Resources

SurveyJS Dashboard depends on other JavaScript libraries. Reference them on your page in the following order:

1. Survey Core
A platform-independent part of [SurveyJS Form Library](https://surveyjs.io/form-library/documentation/overview) that works with the survey model. SurveyJS Dashboard requires only this part, but if you also display the survey on the page, reference [the rest of the SurveyJS Form Library resources](/form-library/documentation/get-started-html-css-javascript#link-surveyjs-resources) as well.

1. <a href="https://github.com/plotly/plotly.js#readme" target="_blank">Plotly.js</a> and <a href="https://github.com/timdream/wordcloud2.js#readme" target="_blank">Wordcloud</a>
Wordcloud (optional) is used to visualize the Text, Multiple Text, and Comment question types. Plotly.js (required) is used to visualize the rest of the question types.

1. SurveyJS Dashboard
A library that integrates Survey Core with Plotly.js and Wordcloud.

The following code shows how to reference these libraries:

```html
<head>
<!-- ... -->
<!-- SurveyJS Form Library resources -->
<script type="text/javascript" src="https://unpkg.com/survey-core/survey.core.min.js"></script>
<!-- Uncomment the following lines if you also display the survey on the page -->
<!-- <link href="https://unpkg.com/survey-core/defaultV2.min.css" type="text/css" rel="stylesheet"> -->
<!-- <script type="text/javascript" src="https://unpkg.com/survey-js-ui/survey-js-ui.min.js"></script> -->

<!-- Third-party visualization libraries -->
<script src="https://unpkg.com/plotly.js-dist-min/plotly.min.js"></script>
<!-- Uncomment the following line if you use the Text, Multiple Text, or Comment question types in your surveys -->
<!-- <script src="https://unpkg.com/wordcloud/src/wordcloud2.js"></script> -->

<!-- SurveyJS Dashboard resources-->
<link href="https://unpkg.com/survey-analytics/survey.analytics.min.css" rel="stylesheet">
<script src="https://unpkg.com/survey-analytics/survey.analytics.min.js"></script>
</head>
```

## Load Survey Results

You can access survey results as a JSON object within the `SurveyModel`'s `onComplete` event handler. Send the results to your server and store them with a specific survey ID. Refer to the [Handle Survey Completion](/form-library/documentation/get-started-html-css-javascript#handle-survey-completion) help topic for more information.

To load the survey results, send the survey ID to your server and return an array of JSON objects:

```js
const SURVEY_ID = 1;

loadSurveyResults("https://your-web-service.com/" + SURVEY_ID)
.then((surveyResults) => {
// ...
// Configure and render the Visualization Panel here
// Refer to the help topics below
// ...
});

function loadSurveyResults (url) {
return new Promise((resolve, reject) => {
const request = new XMLHttpRequest();
request.open('GET', url);
request.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
request.onload = () => {
const response = request.response ? JSON.parse(request.response) : [];
resolve(response);
}
request.onerror = () => {
reject(request.statusText);
}
request.send();
});
}
```

For demonstration purposes, this tutorial uses predefined survey results. The following code shows a survey model and the structure of the survey results array:

```js
const surveyJson = {
elements: [{
name: "satisfaction-score",
title: "How would you describe your experience with our product?",
type: "radiogroup",
choices: [
{ value: 5, text: "Fully satisfying" },
{ value: 4, text: "Generally satisfying" },
{ value: 3, text: "Neutral" },
{ value: 2, text: "Rather unsatisfying" },
{ value: 1, text: "Not satisfying at all" }
],
isRequired: true
}, {
name: "nps-score",
title: "On a scale of zero to ten, how likely are you to recommend our product to a friend or colleague?",
type: "rating",
rateMin: 0,
rateMax: 10,
}],
showQuestionNumbers: "off",
completedHtml: "Thank you for your feedback!",
};

const surveyResults = [{
"satisfaction-score": 5,
"nps-score": 10
}, {
"satisfaction-score": 5,
"nps-score": 9
}, {
"satisfaction-score": 3,
"nps-score": 6
}, {
"satisfaction-score": 3,
"nps-score": 6
}, {
"satisfaction-score": 2,
"nps-score": 3
}];
```

## Configure the Visualization Panel

Analytics charts are displayed in a Visualization Panel. Specify [its properties](/Documentation/Analytics?id=ivisualizationpaneloptions) in a configuration object. In this tutorial, the object enables the [`allowHideQuestions`](/Documentation/Analytics?id=ivisualizationpaneloptions#allowHideQuestions) property:

```js
const vizPanelOptions = {
allowHideQuestions: false
}
```

Pass the configuration object, survey questions, and results to the `VisualizationPanel` constructor as shown in the code below to instantiate the Visualization Panel. Assign the produced instance to a constant that will be used later to render the component:

```js
const surveyJson = { /* ... */ };
const surveyResults = [ /* ... */ ];
const vizPanelOptions = { /* ... */ };

const survey = new Survey.Model(surveyJson);

const vizPanel = new SurveyAnalytics.VisualizationPanel(
survey.getAllQuestions(),
surveyResults,
vizPanelOptions
);
```

<details>
<summary>View Full Code</summary>

```html
<!DOCTYPE html>
<html>
<head>
<title>SurveyJS Dashboard</title>
<meta charset="utf-8">
<script type="text/javascript" src="https://unpkg.com/survey-core/survey.core.min.js"></script>
<!-- Uncomment the following lines if you also display the survey on the page -->
<!-- <link href="https://unpkg.com/survey-core/defaultV2.min.css" type="text/css" rel="stylesheet"> -->
<!-- <script type="text/javascript" src="https://unpkg.com/survey-js-ui/survey-js-ui.min.js"></script> -->

<script src="https://unpkg.com/plotly.js-dist-min/plotly.min.js"></script>
<!-- Uncomment the following line if you use the Text, Multiple Text, or Comment question types in your surveys -->
<!-- <script src="https://unpkg.com/wordcloud/src/wordcloud2.js"></script> -->

<link href="https://unpkg.com/survey-analytics/survey.analytics.min.css" rel="stylesheet">
<script src="https://unpkg.com/survey-analytics/survey.analytics.min.js"></script>

<script type="text/javascript" src="index.js"></script>
</head>
<body>

</body>
</html>
```

```js
const surveyJson = {
elements: [{
name: "satisfaction-score",
title: "How would you describe your experience with our product?",
type: "radiogroup",
choices: [
{ value: 5, text: "Fully satisfying" },
{ value: 4, text: "Generally satisfying" },
{ value: 3, text: "Neutral" },
{ value: 2, text: "Rather unsatisfying" },
{ value: 1, text: "Not satisfying at all" }
],
isRequired: true
}, {
name: "nps-score",
title: "On a scale of zero to ten, how likely are you to recommend our product to a friend or colleague?",
type: "rating",
rateMin: 0,
rateMax: 10,
}],
showQuestionNumbers: "off",
completedHtml: "Thank you for your feedback!",
};

const survey = new Survey.Model(surveyJson);

const surveyResults = [{
"satisfaction-score": 5,
"nps-score": 10
}, {
"satisfaction-score": 5,
"nps-score": 9
}, {
"satisfaction-score": 3,
"nps-score": 6
}, {
"satisfaction-score": 3,
"nps-score": 6
}, {
"satisfaction-score": 2,
"nps-score": 3
}];

const vizPanelOptions = {
allowHideQuestions: false
}

const vizPanel = new SurveyAnalytics.VisualizationPanel(
survey.getAllQuestions(),
surveyResults,
vizPanelOptions
);
```
</details>

## Render the Visualization Panel

A Visualization Panel should be rendered in a page element. Add this element to the page markup:

```html
<body>
<div id="surveyVizPanel"></div>
</body>
```

To render the Visualization Panel in the page element, call the `render(container)` method on the Visualization Panel instance you created in the previous step:

```js
document.addEventListener("DOMContentLoaded", function() {
vizPanel.render(document.getElementById("surveyVizPanel"));
});
```

<details>
<summary>View Full Code</summary>

```html
<!DOCTYPE html>
<html>
<head>
<title>SurveyJS Dashboard</title>
<meta charset="utf-8">
<script type="text/javascript" src="https://unpkg.com/survey-core/survey.core.min.js"></script>
<!-- Uncomment the following lines if you also display the survey on the page -->
<!-- <link href="https://unpkg.com/survey-core/defaultV2.min.css" type="text/css" rel="stylesheet"> -->
<!-- <script type="text/javascript" src="https://unpkg.com/survey-js-ui/survey-js-ui.min.js"></script> -->

<script src="https://unpkg.com/plotly.js-dist-min/plotly.min.js"></script>
<!-- Uncomment the following line if you use the Text, Multiple Text, or Comment question types in your surveys -->
<!-- <script src="https://unpkg.com/wordcloud/src/wordcloud2.js"></script> -->

<link href="https://unpkg.com/survey-analytics/survey.analytics.min.css" rel="stylesheet">
<script src="https://unpkg.com/survey-analytics/survey.analytics.min.js"></script>

<script type="text/javascript" src="index.js"></script>
</head>
<body>
<div id="surveyVizPanel"></div>
</body>
</html>
```

```js
const surveyJson = {
elements: [{
name: "satisfaction-score",
title: "How would you describe your experience with our product?",
type: "radiogroup",
choices: [
{ value: 5, text: "Fully satisfying" },
{ value: 4, text: "Generally satisfying" },
{ value: 3, text: "Neutral" },
{ value: 2, text: "Rather unsatisfying" },
{ value: 1, text: "Not satisfying at all" }
],
isRequired: true
}, {
name: "nps-score",
title: "On a scale of zero to ten, how likely are you to recommend our product to a friend or colleague?",
type: "rating",
rateMin: 0,
rateMax: 10,
}],
showQuestionNumbers: "off",
completedHtml: "Thank you for your feedback!",
};

const survey = new Survey.Model(surveyJson);

const surveyResults = [{
"satisfaction-score": 5,
"nps-score": 10
}, {
"satisfaction-score": 5,
"nps-score": 9
}, {
"satisfaction-score": 3,
"nps-score": 6
}, {
"satisfaction-score": 3,
"nps-score": 6
}, {
"satisfaction-score": 2,
"nps-score": 3
}];

const vizPanelOptions = {
allowHideQuestions: false
}

const vizPanel = new SurveyAnalytics.VisualizationPanel(
survey.getAllQuestions(),
surveyResults,
vizPanelOptions
);

document.addEventListener("DOMContentLoaded", function() {
vizPanel.render(document.getElementById("surveyVizPanel"));
});
```
</details>

[View Full Code on GitHub](https://github.com/surveyjs/code-examples/tree/main/get-started-analytics/html-css-js (linkStyle))

## See Also

[Dashboard Demo Examples](/dashboard/examples/ (linkStyle))
2 changes: 1 addition & 1 deletion docs/get-started-react.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This step-by-step tutorial will help you get started with SurveyJS Dashboard in

As a result, you will create the following dashboard:

<iframe src="/proxy/github/code-examples/get-started-analytics/knockout/index.html"
<iframe src="/proxy/github/code-examples/get-started-analytics/html-css-js/index.html"
style="width:100%; border:0; border-radius: 4px; overflow:hidden;"
></iframe>
Expand Down
2 changes: 1 addition & 1 deletion docs/get-started-vue.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This step-by-step tutorial will help you get started with SurveyJS Dashboard in

As a result, you will create the following dashboard:

<iframe src="/proxy/github/code-examples/get-started-analytics/knockout/index.html"
<iframe src="/proxy/github/code-examples/get-started-analytics/html-css-js/index.html"
style="width:100%; border:0; border-radius: 4px; overflow:hidden;"
></iframe>
Expand Down
2 changes: 1 addition & 1 deletion docs/get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ Refer to one of the following tutorials to get started with SurveyJS Dashboard o
- [Angular](/Documentation/Analytics?id=get-started-angular)
- [Vue](/Documentation/Analytics?id=get-started-vue)
- [React](/Documentation/Analytics?id=get-started-react)
- [Knockout / jQuery](/Documentation/Analytics?id=get-started-knockout-jquery)
- [HTML/CSS/JavaScript](/dashboard/documentation/get-started-html-css-javascript)
2 changes: 1 addition & 1 deletion docs/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ SurveyJS Dashboard visualizes survey results and allows users to analyze them.
- [Angular](/Documentation/Analytics?id=get-started-angular)
- [Vue](/Documentation/Analytics?id=get-started-vue)
- [React](/Documentation/Analytics?id=get-started-react)
- [Knockout / jQuery](/Documentation/Analytics?id=get-started-knockout-jquery)
- [HTML/CSS/JavaScript](/dashboard/documentation/get-started-html-css-javascript)

We also include multiple [demo examples](/Examples/Analytics) that allow you to edit and copy code.

Expand Down
Loading

0 comments on commit ee27799

Please sign in to comment.