sycshk

Members
  • Content count

    4
  • Joined

  • Last visited

Posts posted by sycshk


  1. Hi Haritha,

     

    No actually. I need multiple categories and multiple series. But somehow I need it in 1 single line of string/data. So it goes {"label":"Desktop","seriesname":"A","value":"335000"},{"label":"Notebook","seriesname":"B","value":"5000"} etc...

     

    Instead of having categories and dataset split up.

     

     

    Hi,

     

    Do you want to show just one category and one series on the Marimekko chart? If yes, then you may use it in the following way:

     

    Eg.
     
      "categories": [
        {
          "category": [
            {
              "label": "Desktop"
            }
          ]
        }
      ],
      "dataset": [
        {
          "seriesname": "A",
          "data": [
            {
              "value": "335000"
            }
          ]
        }
      ]
    }
     
    Hope this helps.

     


  2. Due to a system limitation, I can only produce in JSON "dataset":[{"label":"Desktop","seriesname":"A","value":"335000"}] instead of the below in the documentation. Anyway to configure it so that it will take the figures similar to my ideal case? Can someone suggest a workaround for me? This is for MariMekko chart and I'm new to FusionCharts. Thanks in advance.

     

    "categories":[{
          "category":[{
              "label":"Desktop"
            },
            {
              "label":"Laptop"
            },
            {
              "label":"Notebook"
            }
          ]
        }
      ],
      "dataset":[{
          "seriesname":"A",
          "data":[{
              "value":"335000"
            },
            {
              "value":"225100"
            },
            {
              "value":"164200"
            }
          ]
        },
        {
          "seriesname":"B",
          "data":[{
              "value":"245000"
            },
            {
              "value":"198000"
            },
            {
              "value":"120000"
            }
          ]
        },
        {
          "seriesname":"C",
          "data":[{
              "value":"298000"
            },
            {
              "value":"109300"
            },
            {
              "value":"153600"
            }


  3. Due to a system limitation, I can only produce "dataset":[{"label":"Desktop","seriesname":"A","value":"335000"}] instead of the below in the documentation. Anyway to configure it so that it will take the figures similar to my ideal case? Can someone suggest a workaround for me? I'm new to FusionCharts. Thanks in advance.

     

    "categories":[{
          "category":[{
              "label":"Desktop"
            },
            {
              "label":"Laptop"
            },
            {
              "label":"Notebook"
            }
          ]
        }
      ],
      "dataset":[{
          "seriesname":"A",
          "data":[{
              "value":"335000"
            },
            {
              "value":"225100"
            },
            {
              "value":"164200"
            }
          ]
        },
        {
          "seriesname":"B",
          "data":[{
              "value":"245000"
            },
            {
              "value":"198000"
            },
            {
              "value":"120000"
            }
          ]
        },
        {
          "seriesname":"C",
          "data":[{
              "value":"298000"
            },
            {
              "value":"109300"
            },
            {
              "value":"153600"
            }