Home Forums Chart Support Pie Chart With Dynamic Data

Pie Chart With Dynamic Data

Viewing 5 posts - 1 through 5 (of 5 total)
  • #5599

    I can successfully render a canvasJS pie chart using static data hard-coded within a js array like this:

    var dps = [{ y: 1, indexLabel: “Writing” }, { y: 0, indexLabel: “External Collaboration” }, { y: 0, indexLabel: “Ready for Edit” }, { y: 0, indexLabel: “Editing” }, { y: 0, indexLabel: “Ready for Review” }, { y: 0, indexLabel: “In Pink Team” }, { y: 0, indexLabel: “In Gold Team” }, { y: 1, indexLabel: “In Red Team” }, { y: 0, indexLabel: “Final Versions” }]

    However, I need to simply reference an array already populated. I am populating an array from a table on the page. I can’t understand why it won’t work because when I convert the array to string and print, everything is correct and in the right format. Below is the link to my jsfiddle example code.

    Any help is greatly appreciated.

    #5600

    #5601
    #5603

    Line 18 is where I think the issue is.

    // S/B formatted like this: { y: 10, indexLabel: “Writing (1)” }
    dps.push([‘\{ y: ‘ + Number(value) + ‘, indexLabel: \”‘ + key + ‘ (‘ + value + ‘)\” \}’ ]);

    I would really appreciate any feedback.

    #5605

    Here is the solution:

    dps.push({ y: Number(value), indexLabel: key + ‘(‘ + value + ‘)’});

    I was not building the array the right way. I was putting text elements in it where I needed to put objects in it.

Viewing 5 posts - 1 through 5 (of 5 total)

You must be logged in to reply to this topic.