Survey.StylesManager.applyTheme("modern");
var json = {
"pages": [
{
"questions": [
{
"type": "matrix",
"name": "Quality",
"title": "Please indicate if you agree or disagree with the following statements",
"columns": [
{
"value": 1,
"text": "Strongly Disagree"
},
{
"value": 2,
"text": "Disagree"
},
{
"value": 3,
"text": "Neutral"
},
{
"value": 4,
"text": "Agree"
},
{
"value": 5,
"text": "Strongly Agree"
}
],
"rows": [
{
"value": "affordable",
"text": "Product is affordable"
},
{
"value": "does what it claims",
"text": "Product does what it claims"
},
{
"value": "better then others",
"text": "Product is better than other products on the market"
},
{
"value": "easy to use",
"text": "Product is easy to use"
}
]
},
{
"type": "rating",
"name": "satisfaction",
"title": "How satisfied are you with the Product?",
"mininumRateDescription": "Not Satisfied",
"maximumRateDescription": "Completely satisfied"
},
{
"type": "rating",
"name": "recommend friends",
"visibleIf": "{satisfaction} > 3",
"title": "How likely are you to recommend the Product to a friend or co-worker?",
"mininumRateDescription": "Will not recommend",
"maximumRateDescription": "I will recommend"
},
{
"type": "comment",
"name": "suggestions",
"title": "What would make you more satisfied with the Product?"
}
]
},
{
"questions": [
{
"type": "radiogroup",
"name": "price to competitors",
"title": "Compared to our competitors, do you feel the Product is",
"choices": [
"Less expensive",
"Priced about the same",
"More expensive",
"Not sure"
]
},
{
"type": "radiogroup",
"name": "price",
"title": "Do you feel our current price is merited by our product?",
"choices": [
"correct|Yes, the price is about right",
"low|No, the price is too low for your product",
"high|No, the price is too high for your product"
]
},
{
"type": "multipletext",
"name": "pricelimit",
"title": "What is the... ",
"items": [
{
"name": "mostamount",
"title": "Most amount you would every pay for a product like ours"
},
{
"name": "leastamount",
"title": "The least amount you would feel comfortable paying"
}
]
}
]
},
{
"questions": [
{
"type": "text",
"name": "email",
"title": "Thank you for taking our survey. Your survey is almost complete, please enter your email address in the box below if you wish to participate in our drawing, then press the 'Submit' button."
}
]
}
]
};
window.survey = new Survey.Model(json);
survey.onComplete.add(function(result) {
document.querySelector('#surveyResult').textContent =
"Result JSON:\n" + JSON.stringify(result.data, null, 3);
});
var app = new Vue({
el: '#surveyElement',
data:
{
survey: survey
}
});
function saveSurveyToPdf(filename, surveyModel, pdfWidth, pdfHeight) {
var options = {
fontSize: 14,
margins: {
left: 10,
right: 10,
top: 10,
bot: 10
},
format: [pdfWidth, pdfHeight]
};
var surveyPDF = new SurveyPDF.SurveyPDF(json, options);
surveyPDF.data = surveyModel.data;
surveyPDF.save(filename);
}
document.getElementById("saveToPDFbtn").onclick = function() {
var pdfWidth = survey.pdfWidth || 210;
var pdfHeight = survey.pdfHeight || 297;
saveSurveyToPdf("surveyResult.pdf", survey, pdfWidth, pdfHeight);
};
survey.data = {
'Quality': {
'affordable': '3',
'does what it claims': '4',
'better then others': '3',
'easy to use': '5'
},
'satisfaction': '4',
'recommend friends': '4',
'suggestions': '24/7 support would help a lot.',
'price to competitors': 'Not sure',
'price': 'correct',
'pricelimit': {
'mostamount': 450,
'leastamount': 200
},
'email': 'jon.snow@nightwatch.org'
};
<!DOCTYPE html>
<html lang="en">
<head>
<title>Convert survey results to PDF, Vue Survey Library Example</title>
<meta name="viewport" content="width=device-width" />
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="/DevBuilds/survey-vue/survey.vue.min.js"></script>
<link rel="stylesheet" href="./index.css">
<link href="/DevBuilds/survey-core/modern.css" type="text/css" rel="stylesheet"/>
<script src="https://cdn.jsdelivr.net/npm/promise-polyfill@8/dist/polyfill.min.js"></script>
<script src="https://unpkg.com/jspdf@1.5.3/dist/jspdf.min.js"></script> <script src="/DevBuilds/survey-pdf/survey.pdf.min.js"></script>
</head>
<body>
<button id="saveToPDFbtn" style="margin:10px">Save to PDF</button> <div id="surveyElement" style="display:inline-block;width:100%;">
<survey :survey='survey' />
</div>
<div id="surveyResult"></div>
<script type="text/javascript" src="./index.js"></script>
</body>
</html>
SurveyPDF options
You may pass second optional parameter to SurveyPDF object with pdf render options
var options = {
fontSize: 14,
margins: {
top: 10
}
};
var survey = new SurveyPDF.SurveyPDF(json, options);
Orientation
Set orientation parameter to "p" or "l" to set portrait or landscape orientattion or document
var options = {
orientation: "p"
};
Format
You can set format parameter with type of paper or exact size in mm
var options = {
format: "a4"
};
var options = {
format: [210.0, 297.0]
};
Types of paper:
- a0 – a10, b0 – b10, c0 – c10, dl
- letter, government-letter, legal, junior-legal
- ledger, tabloid, credit-card
Font size
Set the base font size of PDF document. Titles, descriptions and sizes of boxes will be scaled from it
var options = {
fontSize: 14
};
Margins
Allows to set margins on pdf pages
var options = {
margins: {
top: 18,
bot: 10,
left: 12,
right: 10
}
};
Compress
Set it true to produce compressed PDF. Compressed PDF doesn't support setting custom fonts
var options = {
compress: true
};
Commercial License
You have right to set any of these parameters to true if you have bought the commercial licence only. It will remove the text about non-commerical usage on the top of the document. Setting any of these parameters true without having a commercial licence is illegal
var options = {
commercial: true
};
or
var options = {
haveCommercialLicense: true
};