How to create dynamically chart for Ionic App with Firebase data?
I have a firebase catalogue as the following for an Ionic 3 app.
These are answers of many users for a questionnaire for each question's id. Most of them have the format of ratings, to wit values 0 to 5. Currently, i get the data and display the mean value for each question from the answers of all users.
FIREBASE FORMAT:
-submissions
- Jack
- George
- Peter
-0
-id: 1.1
-rating: 5
-1
-id: 2.1
-rating: 2
-2
-3
-4
-id: 3.2
-rating: 3
I create the mean values:
this.submissions = this.afDatabase.list('submissions')
var formArray : FormArray = new FormArray()
Array.from(Array(20).keys()).forEach(e => formArray.push(this.createItem()))
this.survey = this.formBuilder.group({
//rating: [''],
//answer: [''],
items: this.formBuilder.array(formArray.controls)
})
this.crunchData()
this.usersubm = this.afDatabase.list('submissions'+`/`+ this.user).valueChanges();
this.usersubm.subscribe(_ => {
this.loading = false
})
console.log("usersubm",this.usersubm);
// this.apokliseis()
}
ngOnInit() {
}
crunchData() {
this.submissions.valueChanges().subscribe(
(results:Submission) => {
this.loading = false
console.log('crunchData.results', results)
this.crunch(results)
}
)
}
crunch(results: Submission) {
var stats = {}
this.ids =
results.forEach((submission) => {
var programCode = submission[1].answer
var answerArray = submission as QuestionAnswer
if (!stats[programCode]) {
stats[programCode] = {}
stats[programCode].show = true
}
answerArray.forEach((answer: QuestionAnswer) => {
console.log('answer:', answer.user)
// include id on list of ids
if (this.ids.indexOf(answer.id) == -1) this.ids.push(answer.id)
if (!stats[programCode][answer.id]) {
stats[programCode][answer.id] = {}
}
var questionStats = stats[programCode][answer.id]
questionStats.title = answer.title
if (answer.type == 'text') {
if (!questionStats.answers) questionStats.answers =
questionStats.answers.push(answer.answer)
}
// average(statistics[programCode][id].ratings
if (answer.type == 'radio') {
if (!questionStats.ratings) questionStats.ratings = {}
if (!questionStats.ratings[answer.rating]) questionStats.ratings[answer.rating] = 0
questionStats.ratings[answer.rating] += 1
}
if (answer.type == 'radio2') {
if (!questionStats.answers) questionStats.answers =
questionStats.answers.push(answer.answer)
}
})
})
console.log('crunch.stats before', stats)
this.statistics = stats
this.crunchAverages(results)
console.log('crunch.stats', stats)
Object.keys(this.statistics).forEach(programCode => {
this.ids.forEach(id => {
this.apant[id]= this.statistics[programCode][id].answers
//this.calculateAverage(this.statistics[programCode][id].ratings)
})
})
console.log('apantiseius x:', this.apant[1.1])
this.programCodes = Observable.of( Object.keys(stats))
return stats
}
crunchAverages(results: Submission) {
Object.keys(this.statistics).forEach(programCode => {
this.ids.forEach(id => {
if (id==2.1 || id==3.1 || id==4.1){
console.log('gia na doume', this.statistics[programCode][id].ratings.average)
}
console.log("id==",id)
console.log('crunchAverages', this.statistics[programCode][id])
this.calculateAverage(this.statistics[programCode][id].ratings)
})
})
}
calculateAverage(ratings) {
if (!ratings) return
var r1 = ratings[1] ? ratings[1] : 0
var r2 = ratings[2] ? ratings[2] : 0
var r3 = ratings[3] ? ratings[3] : 0
var r4 = ratings[4] ? ratings[4] : 0
var r5 = ratings[5] ? ratings[5] : 0
var total = r1 + r2 + r3 + r4 + r5
ratings.average = (1 * r1 + 2 * r2 + 3 * r3 + 4 * r4 + 5 * r5 ) / total
ratings.average = Math.round(ratings.average * 1000) / 1000
ratings.roundedAverage = this.roundAverage(ratings.average)
}
roundAverage(average: number) {
if (average < 0) {
console.log('roundAverage warning: average < 0')
return 0
}
if (average < 0.25) return 0.00
if (average < 0.75) return 0.50
if (average < 1.25) return 1.00
if (average < 1.75) return 1.50
if (average < 2.25) return 2.00
if (average < 2.75) return 2.50
if (average < 3.25) return 3.00
if (average < 3.75) return 3.50
if (average < 4.25) return 4.00
if (average < 4.75) return 4.50
if (average > 5.00) console.log('roundAverage warning: average > 5')
return 5
}
createItem(): FormGroup {
return this.formBuilder.group({
id: [''],
rating: [''],
answer: [''],
title: ['']
})
}
Now, I want to create charts with the average values for each id question so that the average score for each question is visible.
typescript firebase ionic-framework ionic3 chart.js
add a comment |
I have a firebase catalogue as the following for an Ionic 3 app.
These are answers of many users for a questionnaire for each question's id. Most of them have the format of ratings, to wit values 0 to 5. Currently, i get the data and display the mean value for each question from the answers of all users.
FIREBASE FORMAT:
-submissions
- Jack
- George
- Peter
-0
-id: 1.1
-rating: 5
-1
-id: 2.1
-rating: 2
-2
-3
-4
-id: 3.2
-rating: 3
I create the mean values:
this.submissions = this.afDatabase.list('submissions')
var formArray : FormArray = new FormArray()
Array.from(Array(20).keys()).forEach(e => formArray.push(this.createItem()))
this.survey = this.formBuilder.group({
//rating: [''],
//answer: [''],
items: this.formBuilder.array(formArray.controls)
})
this.crunchData()
this.usersubm = this.afDatabase.list('submissions'+`/`+ this.user).valueChanges();
this.usersubm.subscribe(_ => {
this.loading = false
})
console.log("usersubm",this.usersubm);
// this.apokliseis()
}
ngOnInit() {
}
crunchData() {
this.submissions.valueChanges().subscribe(
(results:Submission) => {
this.loading = false
console.log('crunchData.results', results)
this.crunch(results)
}
)
}
crunch(results: Submission) {
var stats = {}
this.ids =
results.forEach((submission) => {
var programCode = submission[1].answer
var answerArray = submission as QuestionAnswer
if (!stats[programCode]) {
stats[programCode] = {}
stats[programCode].show = true
}
answerArray.forEach((answer: QuestionAnswer) => {
console.log('answer:', answer.user)
// include id on list of ids
if (this.ids.indexOf(answer.id) == -1) this.ids.push(answer.id)
if (!stats[programCode][answer.id]) {
stats[programCode][answer.id] = {}
}
var questionStats = stats[programCode][answer.id]
questionStats.title = answer.title
if (answer.type == 'text') {
if (!questionStats.answers) questionStats.answers =
questionStats.answers.push(answer.answer)
}
// average(statistics[programCode][id].ratings
if (answer.type == 'radio') {
if (!questionStats.ratings) questionStats.ratings = {}
if (!questionStats.ratings[answer.rating]) questionStats.ratings[answer.rating] = 0
questionStats.ratings[answer.rating] += 1
}
if (answer.type == 'radio2') {
if (!questionStats.answers) questionStats.answers =
questionStats.answers.push(answer.answer)
}
})
})
console.log('crunch.stats before', stats)
this.statistics = stats
this.crunchAverages(results)
console.log('crunch.stats', stats)
Object.keys(this.statistics).forEach(programCode => {
this.ids.forEach(id => {
this.apant[id]= this.statistics[programCode][id].answers
//this.calculateAverage(this.statistics[programCode][id].ratings)
})
})
console.log('apantiseius x:', this.apant[1.1])
this.programCodes = Observable.of( Object.keys(stats))
return stats
}
crunchAverages(results: Submission) {
Object.keys(this.statistics).forEach(programCode => {
this.ids.forEach(id => {
if (id==2.1 || id==3.1 || id==4.1){
console.log('gia na doume', this.statistics[programCode][id].ratings.average)
}
console.log("id==",id)
console.log('crunchAverages', this.statistics[programCode][id])
this.calculateAverage(this.statistics[programCode][id].ratings)
})
})
}
calculateAverage(ratings) {
if (!ratings) return
var r1 = ratings[1] ? ratings[1] : 0
var r2 = ratings[2] ? ratings[2] : 0
var r3 = ratings[3] ? ratings[3] : 0
var r4 = ratings[4] ? ratings[4] : 0
var r5 = ratings[5] ? ratings[5] : 0
var total = r1 + r2 + r3 + r4 + r5
ratings.average = (1 * r1 + 2 * r2 + 3 * r3 + 4 * r4 + 5 * r5 ) / total
ratings.average = Math.round(ratings.average * 1000) / 1000
ratings.roundedAverage = this.roundAverage(ratings.average)
}
roundAverage(average: number) {
if (average < 0) {
console.log('roundAverage warning: average < 0')
return 0
}
if (average < 0.25) return 0.00
if (average < 0.75) return 0.50
if (average < 1.25) return 1.00
if (average < 1.75) return 1.50
if (average < 2.25) return 2.00
if (average < 2.75) return 2.50
if (average < 3.25) return 3.00
if (average < 3.75) return 3.50
if (average < 4.25) return 4.00
if (average < 4.75) return 4.50
if (average > 5.00) console.log('roundAverage warning: average > 5')
return 5
}
createItem(): FormGroup {
return this.formBuilder.group({
id: [''],
rating: [''],
answer: [''],
title: ['']
})
}
Now, I want to create charts with the average values for each id question so that the average score for each question is visible.
typescript firebase ionic-framework ionic3 chart.js
add a comment |
I have a firebase catalogue as the following for an Ionic 3 app.
These are answers of many users for a questionnaire for each question's id. Most of them have the format of ratings, to wit values 0 to 5. Currently, i get the data and display the mean value for each question from the answers of all users.
FIREBASE FORMAT:
-submissions
- Jack
- George
- Peter
-0
-id: 1.1
-rating: 5
-1
-id: 2.1
-rating: 2
-2
-3
-4
-id: 3.2
-rating: 3
I create the mean values:
this.submissions = this.afDatabase.list('submissions')
var formArray : FormArray = new FormArray()
Array.from(Array(20).keys()).forEach(e => formArray.push(this.createItem()))
this.survey = this.formBuilder.group({
//rating: [''],
//answer: [''],
items: this.formBuilder.array(formArray.controls)
})
this.crunchData()
this.usersubm = this.afDatabase.list('submissions'+`/`+ this.user).valueChanges();
this.usersubm.subscribe(_ => {
this.loading = false
})
console.log("usersubm",this.usersubm);
// this.apokliseis()
}
ngOnInit() {
}
crunchData() {
this.submissions.valueChanges().subscribe(
(results:Submission) => {
this.loading = false
console.log('crunchData.results', results)
this.crunch(results)
}
)
}
crunch(results: Submission) {
var stats = {}
this.ids =
results.forEach((submission) => {
var programCode = submission[1].answer
var answerArray = submission as QuestionAnswer
if (!stats[programCode]) {
stats[programCode] = {}
stats[programCode].show = true
}
answerArray.forEach((answer: QuestionAnswer) => {
console.log('answer:', answer.user)
// include id on list of ids
if (this.ids.indexOf(answer.id) == -1) this.ids.push(answer.id)
if (!stats[programCode][answer.id]) {
stats[programCode][answer.id] = {}
}
var questionStats = stats[programCode][answer.id]
questionStats.title = answer.title
if (answer.type == 'text') {
if (!questionStats.answers) questionStats.answers =
questionStats.answers.push(answer.answer)
}
// average(statistics[programCode][id].ratings
if (answer.type == 'radio') {
if (!questionStats.ratings) questionStats.ratings = {}
if (!questionStats.ratings[answer.rating]) questionStats.ratings[answer.rating] = 0
questionStats.ratings[answer.rating] += 1
}
if (answer.type == 'radio2') {
if (!questionStats.answers) questionStats.answers =
questionStats.answers.push(answer.answer)
}
})
})
console.log('crunch.stats before', stats)
this.statistics = stats
this.crunchAverages(results)
console.log('crunch.stats', stats)
Object.keys(this.statistics).forEach(programCode => {
this.ids.forEach(id => {
this.apant[id]= this.statistics[programCode][id].answers
//this.calculateAverage(this.statistics[programCode][id].ratings)
})
})
console.log('apantiseius x:', this.apant[1.1])
this.programCodes = Observable.of( Object.keys(stats))
return stats
}
crunchAverages(results: Submission) {
Object.keys(this.statistics).forEach(programCode => {
this.ids.forEach(id => {
if (id==2.1 || id==3.1 || id==4.1){
console.log('gia na doume', this.statistics[programCode][id].ratings.average)
}
console.log("id==",id)
console.log('crunchAverages', this.statistics[programCode][id])
this.calculateAverage(this.statistics[programCode][id].ratings)
})
})
}
calculateAverage(ratings) {
if (!ratings) return
var r1 = ratings[1] ? ratings[1] : 0
var r2 = ratings[2] ? ratings[2] : 0
var r3 = ratings[3] ? ratings[3] : 0
var r4 = ratings[4] ? ratings[4] : 0
var r5 = ratings[5] ? ratings[5] : 0
var total = r1 + r2 + r3 + r4 + r5
ratings.average = (1 * r1 + 2 * r2 + 3 * r3 + 4 * r4 + 5 * r5 ) / total
ratings.average = Math.round(ratings.average * 1000) / 1000
ratings.roundedAverage = this.roundAverage(ratings.average)
}
roundAverage(average: number) {
if (average < 0) {
console.log('roundAverage warning: average < 0')
return 0
}
if (average < 0.25) return 0.00
if (average < 0.75) return 0.50
if (average < 1.25) return 1.00
if (average < 1.75) return 1.50
if (average < 2.25) return 2.00
if (average < 2.75) return 2.50
if (average < 3.25) return 3.00
if (average < 3.75) return 3.50
if (average < 4.25) return 4.00
if (average < 4.75) return 4.50
if (average > 5.00) console.log('roundAverage warning: average > 5')
return 5
}
createItem(): FormGroup {
return this.formBuilder.group({
id: [''],
rating: [''],
answer: [''],
title: ['']
})
}
Now, I want to create charts with the average values for each id question so that the average score for each question is visible.
typescript firebase ionic-framework ionic3 chart.js
I have a firebase catalogue as the following for an Ionic 3 app.
These are answers of many users for a questionnaire for each question's id. Most of them have the format of ratings, to wit values 0 to 5. Currently, i get the data and display the mean value for each question from the answers of all users.
FIREBASE FORMAT:
-submissions
- Jack
- George
- Peter
-0
-id: 1.1
-rating: 5
-1
-id: 2.1
-rating: 2
-2
-3
-4
-id: 3.2
-rating: 3
I create the mean values:
this.submissions = this.afDatabase.list('submissions')
var formArray : FormArray = new FormArray()
Array.from(Array(20).keys()).forEach(e => formArray.push(this.createItem()))
this.survey = this.formBuilder.group({
//rating: [''],
//answer: [''],
items: this.formBuilder.array(formArray.controls)
})
this.crunchData()
this.usersubm = this.afDatabase.list('submissions'+`/`+ this.user).valueChanges();
this.usersubm.subscribe(_ => {
this.loading = false
})
console.log("usersubm",this.usersubm);
// this.apokliseis()
}
ngOnInit() {
}
crunchData() {
this.submissions.valueChanges().subscribe(
(results:Submission) => {
this.loading = false
console.log('crunchData.results', results)
this.crunch(results)
}
)
}
crunch(results: Submission) {
var stats = {}
this.ids =
results.forEach((submission) => {
var programCode = submission[1].answer
var answerArray = submission as QuestionAnswer
if (!stats[programCode]) {
stats[programCode] = {}
stats[programCode].show = true
}
answerArray.forEach((answer: QuestionAnswer) => {
console.log('answer:', answer.user)
// include id on list of ids
if (this.ids.indexOf(answer.id) == -1) this.ids.push(answer.id)
if (!stats[programCode][answer.id]) {
stats[programCode][answer.id] = {}
}
var questionStats = stats[programCode][answer.id]
questionStats.title = answer.title
if (answer.type == 'text') {
if (!questionStats.answers) questionStats.answers =
questionStats.answers.push(answer.answer)
}
// average(statistics[programCode][id].ratings
if (answer.type == 'radio') {
if (!questionStats.ratings) questionStats.ratings = {}
if (!questionStats.ratings[answer.rating]) questionStats.ratings[answer.rating] = 0
questionStats.ratings[answer.rating] += 1
}
if (answer.type == 'radio2') {
if (!questionStats.answers) questionStats.answers =
questionStats.answers.push(answer.answer)
}
})
})
console.log('crunch.stats before', stats)
this.statistics = stats
this.crunchAverages(results)
console.log('crunch.stats', stats)
Object.keys(this.statistics).forEach(programCode => {
this.ids.forEach(id => {
this.apant[id]= this.statistics[programCode][id].answers
//this.calculateAverage(this.statistics[programCode][id].ratings)
})
})
console.log('apantiseius x:', this.apant[1.1])
this.programCodes = Observable.of( Object.keys(stats))
return stats
}
crunchAverages(results: Submission) {
Object.keys(this.statistics).forEach(programCode => {
this.ids.forEach(id => {
if (id==2.1 || id==3.1 || id==4.1){
console.log('gia na doume', this.statistics[programCode][id].ratings.average)
}
console.log("id==",id)
console.log('crunchAverages', this.statistics[programCode][id])
this.calculateAverage(this.statistics[programCode][id].ratings)
})
})
}
calculateAverage(ratings) {
if (!ratings) return
var r1 = ratings[1] ? ratings[1] : 0
var r2 = ratings[2] ? ratings[2] : 0
var r3 = ratings[3] ? ratings[3] : 0
var r4 = ratings[4] ? ratings[4] : 0
var r5 = ratings[5] ? ratings[5] : 0
var total = r1 + r2 + r3 + r4 + r5
ratings.average = (1 * r1 + 2 * r2 + 3 * r3 + 4 * r4 + 5 * r5 ) / total
ratings.average = Math.round(ratings.average * 1000) / 1000
ratings.roundedAverage = this.roundAverage(ratings.average)
}
roundAverage(average: number) {
if (average < 0) {
console.log('roundAverage warning: average < 0')
return 0
}
if (average < 0.25) return 0.00
if (average < 0.75) return 0.50
if (average < 1.25) return 1.00
if (average < 1.75) return 1.50
if (average < 2.25) return 2.00
if (average < 2.75) return 2.50
if (average < 3.25) return 3.00
if (average < 3.75) return 3.50
if (average < 4.25) return 4.00
if (average < 4.75) return 4.50
if (average > 5.00) console.log('roundAverage warning: average > 5')
return 5
}
createItem(): FormGroup {
return this.formBuilder.group({
id: [''],
rating: [''],
answer: [''],
title: ['']
})
}
Now, I want to create charts with the average values for each id question so that the average score for each question is visible.
typescript firebase ionic-framework ionic3 chart.js
typescript firebase ionic-framework ionic3 chart.js
asked Nov 20 at 21:29
N. Rozis
61
61
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
There are some nice Frameworks to create Charts in Ionic. My Favourite one is ChartJS. You should try it out.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53401831%2fhow-to-create-dynamically-chart-for-ionic-app-with-firebase-data%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
There are some nice Frameworks to create Charts in Ionic. My Favourite one is ChartJS. You should try it out.
add a comment |
There are some nice Frameworks to create Charts in Ionic. My Favourite one is ChartJS. You should try it out.
add a comment |
There are some nice Frameworks to create Charts in Ionic. My Favourite one is ChartJS. You should try it out.
There are some nice Frameworks to create Charts in Ionic. My Favourite one is ChartJS. You should try it out.
answered Nov 21 at 6:31
Jonathan
738
738
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53401831%2fhow-to-create-dynamically-chart-for-ionic-app-with-firebase-data%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown