{"id":13311,"date":"2014-05-08T10:20:15","date_gmt":"2014-05-08T04:50:15","guid":{"rendered":"https:\/\/2thenew.xyz\/blog\/?p=13311"},"modified":"2014-05-13T14:19:49","modified_gmt":"2014-05-13T08:49:49","slug":"fusioncharts-part-2","status":"publish","type":"post","link":"https:\/\/2thenew.xyz\/blog\/fusioncharts-part-2\/","title":{"rendered":"FusionCharts Part \u2013 2"},"content":{"rendered":"<p>Using Fusion charts you can create different variety of charts two of them are single series chart and multiple series chart . As the name implies in case of single series chart you can only display single chart and in case of multiple series chart you can display multiple charts.<br \/>\nNow lets take an example to have better understanding of these chart.<\/p>\n<h4>Single series chart<\/h4>\n<p>In order to create single series chart you need to have a json in the following format:<br \/>\n[java]<br \/>\n {<br \/>\n            &quot;chart&quot;:{<br \/>\n            &quot;caption&quot;:&quot;Monthly Revenue&quot;,<br \/>\n            &quot;xaxisname&quot;:&quot;Month&quot;,<br \/>\n            &quot;yaxisname&quot;:&quot;Revenue&quot;,<br \/>\n            &quot;numberprefix&quot;:&quot;$&quot;,<br \/>\n            &quot;showvalues&quot;:&quot;0&quot;<br \/>\n        },<br \/>\n            &quot;data&quot;:[{<br \/>\n            &quot;label&quot;:&quot;Jan&quot;,<br \/>\n            &quot;Value&quot;:&quot;420000&quot;<br \/>\n        },<br \/>\n                {<br \/>\n                    &quot;label&quot;:&quot;Feb&quot;,<br \/>\n                    &quot;Value&quot;:&quot;910000&quot;<br \/>\n                },<br \/>\n                {<br \/>\n                    &quot;label&quot;:&quot;Mar&quot;,<br \/>\n                    &quot;Value&quot;:&quot;720000&quot;<br \/>\n                },<br \/>\n                {<br \/>\n                    &quot;label&quot;:&quot;Apr&quot;,<br \/>\n                    &quot;Value&quot;:&quot;550000&quot;<br \/>\n                },<br \/>\n                {<br \/>\n                    &quot;label&quot;:&quot;May&quot;,<br \/>\n                    &quot;Value&quot;:&quot;810000&quot;<br \/>\n                },<br \/>\n                {<br \/>\n                    &quot;label&quot;:&quot;Jun&quot;,<br \/>\n                    &quot;Value&quot;:&quot;510000&quot;<br \/>\n                },<br \/>\n                {<br \/>\n                    &quot;label&quot;:&quot;Jul&quot;,<br \/>\n                    &quot;Value&quot;:&quot;680000&quot;<br \/>\n                },<br \/>\n                {<br \/>\n                    &quot;label&quot;:&quot;Aug&quot;,<br \/>\n                    &quot;Value&quot;:&quot;620000&quot;<br \/>\n                },<br \/>\n                {<br \/>\n                    &quot;label&quot;:&quot;Sep&quot;,<br \/>\n                    &quot;Value&quot;:&quot;610000&quot;<br \/>\n                },<br \/>\n                {<br \/>\n                    &quot;label&quot;:&quot;Oct&quot;,<br \/>\n                    &quot;Value&quot;:&quot;490000&quot;<br \/>\n                },<br \/>\n                {<br \/>\n                    &quot;label&quot;:&quot;Nov&quot;,<br \/>\n                    &quot;Value&quot;:&quot;530000&quot;<br \/>\n                },<br \/>\n                {<br \/>\n                    &quot;label&quot;:&quot;Dec&quot;,<br \/>\n                    &quot;Value&quot;:&quot;330000&quot;<br \/>\n                }<br \/>\n        ],<br \/>\n            &quot;trendlines&quot;:{<br \/>\n            &quot;line&quot;:[{<br \/>\n                &quot;startvalue&quot;:&quot;700000&quot;,<br \/>\n                &quot;color&quot;:&quot;009933&quot;,<br \/>\n                &quot;displayvalue&quot;:&quot;Target&quot;<br \/>\n            }<br \/>\n            ]<br \/>\n        },<br \/>\n            &quot;styles&quot;: {<br \/>\n            &quot;definition&quot;: [<br \/>\n                    {<br \/>\n                        &quot;name&quot;: &quot;CanvasAnim&quot;,<br \/>\n                        &quot;type&quot;: &quot;animation&quot;,<br \/>\n                        &quot;param&quot;: &quot;_xScale&quot;,<br \/>\n                        &quot;start&quot;: &quot;0&quot;,<br \/>\n                        &quot;duration&quot;: &quot;1&quot;<br \/>\n                    }<br \/>\n            ],<br \/>\n            &quot;application&quot;: [<br \/>\n                    {<br \/>\n                        &quot;toobject&quot;: &quot;Canvas&quot;,<br \/>\n                        &quot;styles&quot;: &quot;CanvasAnim&quot;<br \/>\n                    }<br \/>\n            ]<br \/>\n        }<br \/>\n        }<br \/>\n [\/java]<\/p>\n<p>In the previous article I explained how to display fusion charts please refer to it if you don&#8217;t now how to create fusion charts by clicking <a target=\"_blank\" href=\"https:\/\/2thenew.xyz\/blog\/fusioncharts-part-1\/\">Here<\/a>.<\/p>\n<p>Html you need to display fusion chart<br \/>\n[java]<br \/>\n&lt;%@ page contentType=&quot;text\/html;charset=UTF-8&quot; %&gt;<br \/>\n&lt;html&gt;<br \/>\n&lt;head&gt;<br \/>\n    &lt;title&gt;Fusion chart&lt;\/title&gt;<br \/>\n    &lt;script src=&quot;..\/js\/jquery.min.js&quot;&gt;&lt;\/script&gt;<br \/>\n    &lt;script src=&quot;..\/js\/FusionCharts.js&quot;&gt;&lt;\/script&gt;<br \/>\n    &lt;script src=&quot;..\/js\/FusionCharts.HC.js&quot;&gt;&lt;\/script&gt;<br \/>\n    &lt;script src=&quot;..\/js\/FusionCharts.HC.Charts.js&quot;&gt;&lt;\/script&gt;<br \/>\n    &lt;script src=&quot;..\/js\/FusionCharts.jqueryplugin.js&quot;&gt;&lt;\/script&gt;<br \/>\n    &lt;script src=&quot;..\/js\/FusionChartsExportComponent.js&quot;&gt;&lt;\/script&gt;<br \/>\n&lt;\/head&gt;<br \/>\n&lt;body&gt;<br \/>\n      &lt;div id=&quot;chartDisplaydiv&quot;&gt;&lt;\/div&gt;<br \/>\n      &lt;script&gt;<br \/>\n            $(document).ready(function(){<br \/>\n                              $(&quot;#chartDisplaydiv&quot;).insertFusionCharts({<br \/>\n                                                                          swfUrl: &quot;Line&quot;,<br \/>\n                                                                          dataSource: &#8216;..\/demo\/jsonData&#8217;,<br \/>\n                                                                          renderer: &#8216;JavaScript&#8217;,<br \/>\n                                                                          dataFormat: &quot;jsonUrl&quot;,<br \/>\n                                                                          width: &quot;1000&quot;,<br \/>\n                                                                          height: &quot;600&quot;,<br \/>\n                                                                          id: &quot;Sschart&quot;<br \/>\n                                                                       });<\/p>\n<p>                                            });<\/p>\n<p>      &lt;\/script&gt;<br \/>\n&lt;\/body&gt;<br \/>\n&lt;\/html&gt;<\/p>\n<p>[\/java]<br \/>\nIn the above code at dataSource &#8216;..\/demo\/jsonData&#8217; we have the required json in format for single series chart.<br \/>\nYou will get the following chart as the result<br \/>\n<a href=\"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/singleSeriesGraph.png\"><img loading=\"lazy\" decoding=\"async\" src=\"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/singleSeriesGraph.png\" alt=\"Single series chart\" width=\"700\" height=\"400\" class=\"aligncenter size-full\" \/><\/p>\n<h4>Multiple series chart<\/h4>\n<p>In order to create single series chart you need to have a json in the following format:<br \/>\n[java]<br \/>\n{<br \/>\n  &quot;chart&quot;:{ &quot;caption&quot;:&quot;Business Results 2005 v 2006&quot;, &quot;xaxisname&quot;:&quot;Month&quot;, &quot;yaxisname&quot;:&quot;Revenue&quot;, &quot;showvalues&quot;:&quot;0&quot;, &quot;numberprefix&quot;:&quot;\\$&quot; },<br \/>\n  &quot;categories&quot;:[{<br \/>\n      &quot;category&quot;:[{ &quot;label&quot;:&quot;Jan&quot;},<br \/>\n        { &quot;label&quot;:&quot;Feb&quot; },<br \/>\n        { &quot;label&quot;:&quot;Mar&quot; },<br \/>\n        { &quot;label&quot;:&quot;Apr&quot; },<br \/>\n        { &quot;label&quot;:&quot;May&quot; },<br \/>\n        { &quot;label&quot;:&quot;Jun&quot; },<br \/>\n        { &quot;vline&quot;:&quot;true&quot;, &quot;color&quot;:&quot;FF5904&quot;, &quot;thickness&quot;:&quot;2&quot; },<br \/>\n        { &quot;label&quot;:&quot;Jul&quot; },<br \/>\n        { &quot;label&quot;:&quot;Aug&quot; },<br \/>\n        { &quot;label&quot;:&quot;Sep&quot; },<br \/>\n        { &quot;label&quot;:&quot;Oct&quot; },<br \/>\n        { &quot;label&quot;:&quot;Nov&quot; },<br \/>\n        { &quot;label&quot;:&quot;Dec&quot; } ]<br \/>\n    }<br \/>\n  ],<br \/>\n  &quot;dataset&quot;:[{<br \/>\n      &quot;seriesname&quot;:&quot;2006&quot;,<br \/>\n      &quot;data&quot;:[{ &quot;value&quot;:&quot;27400&quot; },<br \/>\n        { &quot;value&quot;:&quot;29800&quot; },<br \/>\n        { &quot;value&quot;:&quot;25800&quot; },<br \/>\n        { &quot;value&quot;:&quot;26800&quot; },<br \/>\n        { &quot;value&quot;:&quot;29600&quot; },<br \/>\n        { &quot;value&quot;:&quot;32600&quot; },<br \/>\n        { &quot;value&quot;:&quot;31800&quot; },<br \/>\n        { &quot;value&quot;:&quot;36700&quot; },<br \/>\n        { &quot;value&quot;:&quot;29700&quot; },<br \/>\n        { &quot;value&quot;:&quot;31900&quot; },<br \/>\n        { &quot;value&quot;:&quot;34800&quot; },<br \/>\n        { &quot;value&quot;:&quot;24800&quot; }]<br \/>\n    },<br \/>\n    {<br \/>\n      &quot;seriesname&quot;:&quot;2005&quot;,<br \/>\n      &quot;data&quot;:[{ &quot;value&quot;:&quot;10000&quot; },<br \/>\n        { &quot;value&quot;:&quot;11500&quot; },<br \/>\n        { &quot;value&quot;:&quot;12500&quot; },<br \/>\n        { &quot;value&quot;:&quot;15000&quot; },<br \/>\n        { &quot;value&quot;:&quot;11000&quot; },<br \/>\n        { &quot;value&quot;:&quot;9800&quot;  },<br \/>\n        { &quot;value&quot;:&quot;11800&quot; },<br \/>\n        { &quot;value&quot;:&quot;19700&quot; },<br \/>\n        { &quot;value&quot;:&quot;21700&quot; },<br \/>\n        { &quot;value&quot;:&quot;21900&quot; },<br \/>\n        { &quot;value&quot;:&quot;22900&quot; },<br \/>\n        { &quot;value&quot;:&quot;20800&quot; }]<br \/>\n    }<br \/>\n  ],<\/p>\n<p>  &quot;styles&quot;:[{<br \/>\n      &quot;definition&quot;:[{<br \/>\n          &quot;style&quot;:[{ &quot;name&quot;:&quot;CanvasAnim&quot;, &quot;type&quot;:&quot;animation&quot;, &quot;param&quot;:&quot;_xScale&quot;, &quot;start&quot;:&quot;0&quot;, &quot;duration&quot;:&quot;1&quot; }]<br \/>\n        }<br \/>\n      ],<br \/>\n      &quot;application&quot;:[{<br \/>\n          &quot;apply&quot;:[{&quot;toobject&quot;:&quot;Canvas&quot;, &quot;styles&quot;:&quot;CanvasAnim&quot; }]<br \/>\n        }]<br \/>\n    }]<br \/>\n}<br \/>\n[\/java]<br \/>\nFor html you need to do the following changes in the code:<br \/>\n[java]<br \/>\n      &lt;script&gt;<br \/>\n            $(document).ready(function(){<br \/>\n                              $(&quot;#chartDisplaydiv&quot;).insertFusionCharts({<br \/>\n                                                                          swfUrl: &quot;MsLine&quot;,<br \/>\n                                                                          dataSource: &#8216;..\/demo\/jsonData&#8217;,<br \/>\n                                                                          renderer: &#8216;JavaScript&#8217;,<br \/>\n                                                                          dataFormat: &quot;jsonUrl&quot;,<br \/>\n                                                                          width: &quot;1000&quot;,<br \/>\n                                                                          height: &quot;600&quot;,<br \/>\n                                                                          id: &quot;Mschart&quot;<br \/>\n                                                                       });<\/p>\n<p>                                            });<\/p>\n<p>      &lt;\/script&gt;<\/p>\n<p>[\/java]<\/p>\n<p>Now at dataSource &#8216;..\/demo\/jsonData&#8217; we have the json for Multiple series chart.<\/p>\n<p>You will get following chart as result<br \/>\n<a href=\"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/multipleseries.png\"><img loading=\"lazy\" decoding=\"async\" src=\"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/multipleseries.png\" alt=\"Multiple series chart\" width=\"700\" height=\"400\" class=\"aligncenter size-full\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Using Fusion charts you can create different variety of charts two of them are single series chart and multiple series chart . As the name implies in case of single series chart you can only display single chart and in case of multiple series chart you can display multiple charts. Now lets take an example [&hellip;]<\/p>\n","protected":false},"author":102,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":3,"footnotes":""},"categories":[7],"tags":[1378,55,27],"class_list":["post-13311","post","type-post","status-publish","format-standard","hentry","category-grails","tag-fusion-charts","tag-javascript","tag-jquery"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Using Fusion charts you can create different variety of charts two of them are single series chart and multiple series chart . As the name implies in case of single series chart you can only display single chart and in case of multiple series chart you can display multiple charts. Now lets take an example\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"pulkit\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.xyz\/blog\/fusioncharts-part-2\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"FusionCharts Part \u2013 2 | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Using Fusion charts you can create different variety of charts two of them are single series chart and multiple series chart . As the name implies in case of single series chart you can only display single chart and in case of multiple series chart you can display multiple charts. Now lets take an example\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.xyz\/blog\/fusioncharts-part-2\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"FusionCharts Part \u2013 2 | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Using Fusion charts you can create different variety of charts two of them are single series chart and multiple series chart . As the name implies in case of single series chart you can only display single chart and in case of multiple series chart you can display multiple charts. Now lets take an example\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/fusioncharts-part-2\\\/#article\",\"name\":\"FusionCharts Part \\u2013 2 | TO THE NEW Blog\",\"headline\":\"FusionCharts Part \\u2013 2\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/pulkit\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2014\\\/07\\\/singleSeriesGraph.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/fusioncharts-part-2\\\/#articleImage\"},\"datePublished\":\"2014-05-08T10:20:15+05:30\",\"dateModified\":\"2014-05-13T14:19:49+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/fusioncharts-part-2\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/fusioncharts-part-2\\\/#webpage\"},\"articleSection\":\"Grails, fusion charts, javascript, jquery\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/fusioncharts-part-2\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"name\":\"Grails\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"position\":2,\"name\":\"Grails\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/fusioncharts-part-2\\\/#listItem\",\"name\":\"FusionCharts Part \\u2013 2\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/fusioncharts-part-2\\\/#listItem\",\"position\":3,\"name\":\"FusionCharts Part \\u2013 2\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"name\":\"Grails\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/pulkit\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/pulkit\\\/\",\"name\":\"pulkit\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/fusioncharts-part-2\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/441327442433dae6b5fce236d129ee04805f926509847c6f1029c4db31e634ae?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"pulkit\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/fusioncharts-part-2\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/fusioncharts-part-2\\\/\",\"name\":\"FusionCharts Part \\u2013 2 | TO THE NEW Blog\",\"description\":\"Using Fusion charts you can create different variety of charts two of them are single series chart and multiple series chart . As the name implies in case of single series chart you can only display single chart and in case of multiple series chart you can display multiple charts. Now lets take an example\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/fusioncharts-part-2\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/pulkit\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/pulkit\\\/#author\"},\"datePublished\":\"2014-05-08T10:20:15+05:30\",\"dateModified\":\"2014-05-13T14:19:49+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"FusionCharts Part \u2013 2 | TO THE NEW Blog","description":"Using Fusion charts you can create different variety of charts two of them are single series chart and multiple series chart . As the name implies in case of single series chart you can only display single chart and in case of multiple series chart you can display multiple charts. Now lets take an example","canonical_url":"https:\/\/2thenew.xyz\/blog\/fusioncharts-part-2\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.xyz\/blog\/fusioncharts-part-2\/#article","name":"FusionCharts Part \u2013 2 | TO THE NEW Blog","headline":"FusionCharts Part \u2013 2","author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/pulkit\/#author"},"publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/singleSeriesGraph.png","@id":"https:\/\/2thenew.xyz\/blog\/fusioncharts-part-2\/#articleImage"},"datePublished":"2014-05-08T10:20:15+05:30","dateModified":"2014-05-13T14:19:49+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.xyz\/blog\/fusioncharts-part-2\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/fusioncharts-part-2\/#webpage"},"articleSection":"Grails, fusion charts, javascript, jquery"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.xyz\/blog\/fusioncharts-part-2\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.xyz\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/grails\/#listItem","name":"Grails"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/grails\/#listItem","position":2,"name":"Grails","item":"https:\/\/2thenew.xyz\/blog\/category\/grails\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/fusioncharts-part-2\/#listItem","name":"FusionCharts Part \u2013 2"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/fusioncharts-part-2\/#listItem","position":3,"name":"FusionCharts Part \u2013 2","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/grails\/#listItem","name":"Grails"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.xyz\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.xyz\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.xyz\/blog\/author\/pulkit\/#author","url":"https:\/\/2thenew.xyz\/blog\/author\/pulkit\/","name":"pulkit","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.xyz\/blog\/fusioncharts-part-2\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/441327442433dae6b5fce236d129ee04805f926509847c6f1029c4db31e634ae?s=96&d=mm&r=g","width":96,"height":96,"caption":"pulkit"}},{"@type":"WebPage","@id":"https:\/\/2thenew.xyz\/blog\/fusioncharts-part-2\/#webpage","url":"https:\/\/2thenew.xyz\/blog\/fusioncharts-part-2\/","name":"FusionCharts Part \u2013 2 | TO THE NEW Blog","description":"Using Fusion charts you can create different variety of charts two of them are single series chart and multiple series chart . As the name implies in case of single series chart you can only display single chart and in case of multiple series chart you can display multiple charts. Now lets take an example","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.xyz\/blog\/fusioncharts-part-2\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/pulkit\/#author"},"creator":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/pulkit\/#author"},"datePublished":"2014-05-08T10:20:15+05:30","dateModified":"2014-05-13T14:19:49+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.xyz\/blog\/#website","url":"https:\/\/2thenew.xyz\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"FusionCharts Part \u2013 2 | TO THE NEW Blog","og:description":"Using Fusion charts you can create different variety of charts two of them are single series chart and multiple series chart . As the name implies in case of single series chart you can only display single chart and in case of multiple series chart you can display multiple charts. Now lets take an example","og:url":"https:\/\/2thenew.xyz\/blog\/fusioncharts-part-2\/","og:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"FusionCharts Part \u2013 2 | TO THE NEW Blog","twitter:description":"Using Fusion charts you can create different variety of charts two of them are single series chart and multiple series chart . As the name implies in case of single series chart you can only display single chart and in case of multiple series chart you can display multiple charts. Now lets take an example","twitter:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"13311","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-30 08:02:17","updated":"2024-02-29 10:46:28","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\/category\/grails\/\" title=\"Grails\">Grails<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tFusionCharts Part \u2013 2\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.xyz\/blog"},{"label":"Grails","link":"https:\/\/2thenew.xyz\/blog\/category\/grails\/"},{"label":"FusionCharts Part \u2013 2","link":"https:\/\/2thenew.xyz\/blog\/fusioncharts-part-2\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/13311","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/users\/102"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/comments?post=13311"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/13311\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/media?parent=13311"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/categories?post=13311"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/tags?post=13311"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}