{"id":1553,"date":"2011-07-13T10:49:33","date_gmt":"2011-07-13T05:19:33","guid":{"rendered":"http:\/\/blog.fusioncharts.com\/?p=1553"},"modified":"2026-01-20T14:37:30","modified_gmt":"2026-01-20T09:07:30","slug":"embedding-fusioncharts-into-cognos-reports","status":"publish","type":"post","link":"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/","title":{"rendered":"Embedding FusionCharts into Cognos Reports: Tutorial"},"content":{"rendered":"<a title=\"Cognos BI\" href=\"https:\/\/www-01.ibm.com\/software\/analytics\/cognos-8-business-intelligence\/\" target=\"_blank\" rel=\"noopener noreferrer\">Cognos<\/a> is a Business Intelligence platform that allows authors to connect to almost any database, design a metadata model, and build reports and dashboards. These reports can be viewed in a number of formats, HTML, PDF, Excel, CSV and XML. While Cognos has its own portal system, these reports can also be attached to Sharepoint (MOSS). This post will detail how to embed FusionCharts v3 into Cognos reports using standard Report Studio objects. It assumes a basic level of understanding of Cognos Report Studio and HTML.\r\n\r\n<!--more-->\r\n\r\nWhile Cognos has a suite of charts, they are often impossible to format exactly to the specifications desired. FusionCharts, while needing more effort to create than Cognos reports, allows for significantly more adjustments in the appearance to allow the user to generate the <a href=\"https:\/\/www.fusioncharts.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">javascript graph<\/a> and chart exactly as he wants it.\r\n<h2>Data String Method<\/h2>\r\nFusionCharts allow authors to embed the source XML directly into the page. This will allow Cognos authors to use HTML Objects to programmatically generate the expected XML.\r\n\r\nTo start, drag an HTML object to the Page Header. Paste in the reference to the FusionCharts.js file:\r\n<pre class=\"lang:markup\">&lt;script type=\"text\/javascript\" src=\".. \/FusionCharts\/Charts\/FusionCharts.js\"&gt;&lt;\/script&gt;<\/pre>\r\nSet the description of the HTML Object to FusionCharts.js so you know what it is in the future.\r\n\r\nNext, drag another HTML object to wherever you want the chart to appear:\r\n\r\n<pre class=\"lang:markup\">&lt;div id=\"chartContainer\"&gt;FusionCharts will load here&lt;\/div&gt;<\/pre>\r\n\r\nSet the description of the HTML Object to [cciel lang=&#8221;html&#8221;]chartContainer[\/cciel].\r\n\r\nNow the parameters for the chart need to be set. Ultimately the full HTML on the page needs to appear similar to the following:\r\n<pre class=\"lang:markup\"><!--&lt;script type=\"text\/javascript\"&gt;\r\n&lt;!\u2014\r\nvar myChart = new FusionCharts\r\n(\"..\/samples\/images\/test\/FusionCharts_Website\/Charts\/Column2D.swf\"\r\n, \"myChartId\"\r\n, \"400\"\r\n, \"300\"\r\n, \"0\"\r\n, \"1\");\r\nmyChart.setXMLData\r\n(\"&lt;chart caption='Total Revenue by Year' xAxisName='Years' yAxisName='Revenue' inThousandSeparator=','&gt;\r\n&lt;set label='2004' value='34,750,563.5' \/&gt;\r\n&lt;set label='2005' value='62,540,865.06' \/&gt;\r\n&lt;set label='2006' value='74,284,959.32' \/&gt;\r\n&lt;\/chart&gt;\");\r\nmyChart.render(\"chartContainer\");\r\n\/\/ -&gt;&lt;\/script&gt;\r\n-->\r\nThis can be achieved by combining HTML objects with repeaters.\r\n\r\n\r\nDrag in an HTML item, and paste everything from [cciel lang=\"html\"]&lt;script type[\/cciel] to [cciel lang=\"html\"]inThousandSeparator=','&gt;[\/cciel]\r\n\r\n<img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-large wp-image-1557\" title=\"Pasting the intial chart parameters to an HTML item\" src=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/07\/image001-616x167.png\" alt=\"Pasting the intial chart parameters to an HTML item\" width=\"616\" height=\"167\" \/>\r\n\r\nThe <code>inThousandSeparator<\/code>flag is important as Cognos will automatically add the thousands separator to numeric fields.\r\n\r\nSet the description of this HTML item to <code>ChartStart<\/code>\r\n\r\nDrag another HTML item to the right, description is Chart End, and paste from <code> \"&lt;\/chart&gt;\" <\/code> to <code>&lt;\/script&gt;\r\n<img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-1558\" title=\"Pasting the final chart parameters in an HTML item\" src=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/07\/image003.png\" alt=\"Pasting the final chart parameters in an HTML item\" width=\"368\" height=\"170\" srcset=\"\/blog\/wp-content\/uploads\/2011\/07\/image003.png 368w, \/blog\/wp-content\/uploads\/2011\/07\/image003-150x69.png 150w, \/blog\/wp-content\/uploads\/2011\/07\/image003-300x138.png 300w\" sizes=\"auto, (max-width: 368px) 100vw, 368px\" \/>\r\n\r\nNow we have to HTML items, <\/code><code>ChartStart<\/code> and <code>ChartEnd<\/code> next to each other. When the report is run, it will have all of the settings for the chart, except for the data itself.\r\n\r\n<img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-1559\" title=\"HTML items, ChartStart and ChartEnd next to each other\" src=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/07\/image005.png\" alt=\"HTML items, ChartStart and ChartEnd next to each other\" width=\"297\" height=\"80\" srcset=\"\/blog\/wp-content\/uploads\/2011\/07\/image005.png 297w, \/blog\/wp-content\/uploads\/2011\/07\/image005-150x40.png 150w\" sizes=\"auto, (max-width: 297px) 100vw, 297px\" \/>\r\n\r\nNow for the values of the chart. Create a query for your chart. In this example, the chart should show revenue by years.\r\n\r\n<img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-1560\" title=\"Query to show revenue by years\" src=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/07\/image007.png\" alt=\"Query to show revenue by years\" width=\"443\" height=\"376\" srcset=\"\/blog\/wp-content\/uploads\/2011\/07\/image007.png 443w, \/blog\/wp-content\/uploads\/2011\/07\/image007-150x127.png 150w, \/blog\/wp-content\/uploads\/2011\/07\/image007-300x254.png 300w\" sizes=\"auto, (max-width: 443px) 100vw, 443px\" \/>\r\n\r\nThe results of this query are:\r\n\r\n<img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-1561\" title=\"Results of the query\" src=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/07\/image009.png\" alt=\"Results of the query\" width=\"128\" height=\"81\" \/>\r\n\r\nRevenue is formatted in the cube, so we'll need to get rid of the dollar sign in the report.\r\n\r\nDrag a repeater between the <code>ChartStart<\/code> and <code>ChartEnd<\/code> HTML items. Set the query to the one you made previously, and put both items into the properties of the repeater.\r\n\r\n<img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-1562\" title=\"Year and Revenue in the properties of the repeater\" src=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/07\/image011.png\" alt=\"Year and Revenue in the properties of the repeater\" width=\"529\" height=\"278\" srcset=\"\/blog\/wp-content\/uploads\/2011\/07\/image011.png 529w, \/blog\/wp-content\/uploads\/2011\/07\/image011-150x79.png 150w, \/blog\/wp-content\/uploads\/2011\/07\/image011-300x157.png 300w\" sizes=\"auto, (max-width: 529px) 100vw, 529px\" \/>\r\n\r\nDrag 5 HTML items into the repeater. The following list explains each item:\r\n<ol>\r\n\t<li>Text: [cciel lang=\"html\"]&lt;set label='[\/cciel]<\/li>\r\n\t<li>Data Item Value: [cciel lang=\"html\"]Year[\/cciel]<\/li>\r\n\t<li>Text: [cciel lang=\"html\"]' value='[\/cciel]<\/li>\r\n\t<li>Report Expression: [cciel lang=\"javascript\"][Query1].[Revenue]*1[\/cciel] This is to remove the $ from the string. If it weren't for the dollar sign you could have left it as a data item value.<\/li>\r\n\t<li>Text: [cciel lang=\"html\"]'\/&gt;[\/cciel]<\/li>\r\n<\/ol>\r\nName the HTML items appropriately, so you can reference them later if needed.\r\n\r\nYour page should now look like this:\r\n\r\n<img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-1563\" title=\"Page with the repeater put in\" src=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/07\/image013.png\" alt=\"Page with the repeater put in\" width=\"573\" height=\"43\" srcset=\"\/blog\/wp-content\/uploads\/2011\/07\/image013.png 573w, \/blog\/wp-content\/uploads\/2011\/07\/image013-150x11.png 150w, \/blog\/wp-content\/uploads\/2011\/07\/image013-300x22.png 300w\" sizes=\"auto, (max-width: 573px) 100vw, 573px\" \/>\r\n\r\nNow try running it. If every step was completed correctly, the report should look like this:\r\n\r\n<img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-1564\" title=\"Total Revenue by Year Column Chart \" src=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/07\/image015.png\" alt=\"Total Revenue by Year Column Chart\" width=\"405\" height=\"304\" srcset=\"\/blog\/wp-content\/uploads\/2011\/07\/image015.png 405w, \/blog\/wp-content\/uploads\/2011\/07\/image015-150x113.png 150w, \/blog\/wp-content\/uploads\/2011\/07\/image015-300x225.png 300w\" sizes=\"auto, (max-width: 405px) 100vw, 405px\" \/>\r\n\r\nBy simply changing the <code>Column2d.swf<\/code> to\u00a0<code>Pie2d.swf<\/code> your chart would look like:\r\n\r\n<img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-1565\" title=\"Total Revenue by Year Pie Chart \" src=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/07\/image017.png\" alt=\"Total Revenue by Year Pie Chart\" width=\"404\" height=\"304\" srcset=\"\/blog\/wp-content\/uploads\/2011\/07\/image017.png 404w, \/blog\/wp-content\/uploads\/2011\/07\/image017-150x113.png 150w, \/blog\/wp-content\/uploads\/2011\/07\/image017-300x225.png 300w\" sizes=\"auto, (max-width: 404px) 100vw, 404px\" \/>\r\n\r\nAnd as Line:\r\n\r\n<img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-1566\" title=\"Total Revenue by Year Line Chart \" src=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/07\/image019.png\" alt=\"Total Revenue by Year Line Chart\" width=\"403\" height=\"302\" srcset=\"\/blog\/wp-content\/uploads\/2011\/07\/image019.png 403w, \/blog\/wp-content\/uploads\/2011\/07\/image019-150x112.png 150w, \/blog\/wp-content\/uploads\/2011\/07\/image019-300x224.png 300w\" sizes=\"auto, (max-width: 403px) 100vw, 403px\" \/>\r\n\r\nThat is how you can embed FusionCharts v3 into your Cognos reports. Do you like what you see?\r\n\r\n<a href=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/07\/FusionCharts_in_Cognos10.zip \"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1830 alignright\" title=\"Download the Cognos XML file\" src=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/07\/Cool-download-button.png\" alt=\"\" width=\"154\" height=\"60\" srcset=\"\/blog\/wp-content\/uploads\/2011\/07\/Cool-download-button.png 257w, \/blog\/wp-content\/uploads\/2011\/07\/Cool-download-button-150x58.png 150w\" sizes=\"auto, (max-width: 154px) 100vw, 154px\" \/><\/a>\r\n\r\nNote: Cognos saves the metadata of the reports as XML inside the Cognos database. This makes it very easy to share reports via email.\r\n\r\nAuthors can simply download the XML and copy it into the clipboard and use the authoring tool to load it.\r\n\r\n<em>This is a guest post written by Paul Mendelson. Paul has worked in the Business Intelligence field for 8 years. He currently works for Opisoft Ltd as a Cognos expert. He works at a number<\/em><em> of client sites including the Road Safety Authority, Menora Insurance, Teva Pharmaceuticals, and a number of other companies. Paul also maintains a <a title=\"Paul's Cognos blog\" href=\"https:\/\/cognospaul.wordpress.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">Cognos blog<\/a>.<\/em><\/pre>","protected":false},"excerpt":{"rendered":"<p>Cognos is a Business Intelligence platform that allows authors to connect to almost any database, design a metadata model, and build reports and dashboards. These reports can be viewed in a number of formats, HTML, PDF, Excel, CSV and XML. While Cognos has its own portal system, these reports can also be attached to Sharepoint [&hellip;]<\/p>\n","protected":false},"author":15,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[18],"tags":[46,77],"coauthors":[717],"class_list":["post-1553","post","type-post","status-publish","format-standard","hentry","category-tutorials","tag-bi","tag-cognos"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Embedding FusionCharts into Cognos Reports<\/title>\n<meta name=\"description\" content=\"Achieve precise customization beyond standard visuals. Use our expert guide to embed FusionCharts v3 into your Cognos reports for 2026 efficiency today.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Embedding FusionCharts into Cognos Reports\" \/>\n<meta property=\"og:description\" content=\"Achieve precise customization beyond standard visuals. Use our expert guide to embed FusionCharts v3 into your Cognos reports for 2026 efficiency today.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/\" \/>\n<meta property=\"og:site_name\" content=\"FusionBrew - The FusionCharts Blog\" \/>\n<meta property=\"article:published_time\" content=\"2011-07-13T05:19:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-20T09:07:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/07\/image001.png\" \/>\n\t<meta property=\"og:image:width\" content=\"976\" \/>\n\t<meta property=\"og:image:height\" content=\"266\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"guest\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"guest\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\n\t    \"@context\": \"https:\/\/schema.org\",\n\t    \"@graph\": [\n\t        {\n\t            \"@type\": \"Article\",\n\t            \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/#article\",\n\t            \"isPartOf\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/\"\n\t            },\n\t            \"author\": {\n\t                \"name\": \"guest\",\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/person\/8eb7f0f8a0a21351a003150290d41ac6\"\n\t            },\n\t            \"headline\": \"Embedding FusionCharts into Cognos Reports: Tutorial\",\n\t            \"datePublished\": \"2011-07-13T05:19:33+00:00\",\n\t            \"dateModified\": \"2026-01-20T09:07:30+00:00\",\n\t            \"mainEntityOfPage\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/\"\n\t            },\n\t            \"wordCount\": 262,\n\t            \"commentCount\": 17,\n\t            \"publisher\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#organization\"\n\t            },\n\t            \"image\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/#primaryimage\"\n\t            },\n\t            \"thumbnailUrl\": \"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/07\/image001-616x167.png\",\n\t            \"keywords\": [\n\t                \"BI\",\n\t                \"cognos\"\n\t            ],\n\t            \"articleSection\": [\n\t                \"Tutorials\"\n\t            ],\n\t            \"inLanguage\": \"en-US\",\n\t            \"potentialAction\": [\n\t                {\n\t                    \"@type\": \"CommentAction\",\n\t                    \"name\": \"Comment\",\n\t                    \"target\": [\n\t                        \"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/#respond\"\n\t                    ]\n\t                }\n\t            ]\n\t        },\n\t        {\n\t            \"@type\": \"WebPage\",\n\t            \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/\",\n\t            \"url\": \"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/\",\n\t            \"name\": \"Embedding FusionCharts into Cognos Reports\",\n\t            \"isPartOf\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#website\"\n\t            },\n\t            \"primaryImageOfPage\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/#primaryimage\"\n\t            },\n\t            \"image\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/#primaryimage\"\n\t            },\n\t            \"thumbnailUrl\": \"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/07\/image001-616x167.png\",\n\t            \"datePublished\": \"2011-07-13T05:19:33+00:00\",\n\t            \"dateModified\": \"2026-01-20T09:07:30+00:00\",\n\t            \"description\": \"Achieve precise customization beyond standard visuals. Use our expert guide to embed FusionCharts v3 into your Cognos reports for 2026 efficiency today.\",\n\t            \"breadcrumb\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/#breadcrumb\"\n\t            },\n\t            \"inLanguage\": \"en-US\",\n\t            \"potentialAction\": [\n\t                {\n\t                    \"@type\": \"ReadAction\",\n\t                    \"target\": [\n\t                        \"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/\"\n\t                    ]\n\t                }\n\t            ]\n\t        },\n\t        {\n\t            \"@type\": \"ImageObject\",\n\t            \"inLanguage\": \"en-US\",\n\t            \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/#primaryimage\",\n\t            \"url\": \"\/blog\/wp-content\/uploads\/2011\/07\/image001.png\",\n\t            \"contentUrl\": \"\/blog\/wp-content\/uploads\/2011\/07\/image001.png\",\n\t            \"width\": 976,\n\t            \"height\": 266,\n\t            \"caption\": \"Pasting the intial chart parameters to an HTML item\"\n\t        },\n\t        {\n\t            \"@type\": \"BreadcrumbList\",\n\t            \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/#breadcrumb\",\n\t            \"itemListElement\": [\n\t                {\n\t                    \"@type\": \"ListItem\",\n\t                    \"position\": 1,\n\t                    \"name\": \"Home\",\n\t                    \"item\": \"https:\/\/www.fusioncharts.com\/blog\/\"\n\t                },\n\t                {\n\t                    \"@type\": \"ListItem\",\n\t                    \"position\": 2,\n\t                    \"name\": \"Embedding FusionCharts into Cognos Reports: Tutorial\"\n\t                }\n\t            ]\n\t        },\n\t        {\n\t            \"@type\": \"WebSite\",\n\t            \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#website\",\n\t            \"url\": \"https:\/\/www.fusioncharts.com\/blog\/\",\n\t            \"name\": \"FusionBrew - The FusionCharts Blog\",\n\t            \"description\": \"Get tips and tricks on how to build effective Data Visualisation using FusionCharts\",\n\t            \"publisher\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#organization\"\n\t            },\n\t            \"potentialAction\": [\n\t                {\n\t                    \"@type\": \"SearchAction\",\n\t                    \"target\": {\n\t                        \"@type\": \"EntryPoint\",\n\t                        \"urlTemplate\": \"https:\/\/www.fusioncharts.com\/blog\/?s={search_term_string}\"\n\t                    },\n\t                    \"query-input\": {\n\t                        \"@type\": \"PropertyValueSpecification\",\n\t                        \"valueRequired\": true,\n\t                        \"valueName\": \"search_term_string\"\n\t                    }\n\t                }\n\t            ],\n\t            \"inLanguage\": \"en-US\"\n\t        },\n\t        {\n\t            \"@type\": \"Organization\",\n\t            \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#organization\",\n\t            \"name\": \"FusionCharts\",\n\t            \"url\": \"https:\/\/www.fusioncharts.com\/blog\/\",\n\t            \"logo\": {\n\t                \"@type\": \"ImageObject\",\n\t                \"inLanguage\": \"en-US\",\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/logo\/image\/\",\n\t                \"url\": \"\/blog\/wp-content\/uploads\/2020\/03\/idera-fc-logo.svg\",\n\t                \"contentUrl\": \"\/blog\/wp-content\/uploads\/2020\/03\/idera-fc-logo.svg\",\n\t                \"width\": 1,\n\t                \"height\": 1,\n\t                \"caption\": \"FusionCharts\"\n\t            },\n\t            \"image\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/logo\/image\/\"\n\t            }\n\t        },\n\t        {\n\t            \"@type\": \"Person\",\n\t            \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/person\/8eb7f0f8a0a21351a003150290d41ac6\",\n\t            \"name\": \"guest\",\n\t            \"image\": {\n\t                \"@type\": \"ImageObject\",\n\t                \"inLanguage\": \"en-US\",\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/person\/image\/328482cd2c44c22cbfaf38e6113a8a24\",\n\t                \"url\": \"https:\/\/secure.gravatar.com\/avatar\/?s=96&r=g\",\n\t                \"contentUrl\": \"https:\/\/secure.gravatar.com\/avatar\/?s=96&r=g\",\n\t                \"caption\": \"guest\"\n\t            },\n\t            \"url\": \"https:\/\/www.fusioncharts.com\/blog\/author\/guest\/\"\n\t        }\n\t    ]\n\t}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Embedding FusionCharts into Cognos Reports","description":"Achieve precise customization beyond standard visuals. Use our expert guide to embed FusionCharts v3 into your Cognos reports for 2026 efficiency today.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/","og_locale":"en_US","og_type":"article","og_title":"Embedding FusionCharts into Cognos Reports","og_description":"Achieve precise customization beyond standard visuals. Use our expert guide to embed FusionCharts v3 into your Cognos reports for 2026 efficiency today.","og_url":"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/","og_site_name":"FusionBrew - The FusionCharts Blog","article_published_time":"2011-07-13T05:19:33+00:00","article_modified_time":"2026-01-20T09:07:30+00:00","og_image":[{"width":976,"height":266,"url":"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/07\/image001.png","type":"image\/png"}],"author":"guest","twitter_card":"summary_large_image","twitter_misc":{"Written by":"guest","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/#article","isPartOf":{"@id":"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/"},"author":{"name":"guest","@id":"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/person\/8eb7f0f8a0a21351a003150290d41ac6"},"headline":"Embedding FusionCharts into Cognos Reports: Tutorial","datePublished":"2011-07-13T05:19:33+00:00","dateModified":"2026-01-20T09:07:30+00:00","mainEntityOfPage":{"@id":"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/"},"wordCount":262,"commentCount":17,"publisher":{"@id":"https:\/\/www.fusioncharts.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/#primaryimage"},"thumbnailUrl":"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/07\/image001-616x167.png","keywords":["BI","cognos"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/","url":"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/","name":"Embedding FusionCharts into Cognos Reports","isPartOf":{"@id":"https:\/\/www.fusioncharts.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/#primaryimage"},"image":{"@id":"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/#primaryimage"},"thumbnailUrl":"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/07\/image001-616x167.png","datePublished":"2011-07-13T05:19:33+00:00","dateModified":"2026-01-20T09:07:30+00:00","description":"Achieve precise customization beyond standard visuals. Use our expert guide to embed FusionCharts v3 into your Cognos reports for 2026 efficiency today.","breadcrumb":{"@id":"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/#primaryimage","url":"\/blog\/wp-content\/uploads\/2011\/07\/image001.png","contentUrl":"\/blog\/wp-content\/uploads\/2011\/07\/image001.png","width":976,"height":266,"caption":"Pasting the intial chart parameters to an HTML item"},{"@type":"BreadcrumbList","@id":"https:\/\/www.fusioncharts.com\/blog\/embedding-fusioncharts-into-cognos-reports\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.fusioncharts.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Embedding FusionCharts into Cognos Reports: Tutorial"}]},{"@type":"WebSite","@id":"https:\/\/www.fusioncharts.com\/blog\/#website","url":"https:\/\/www.fusioncharts.com\/blog\/","name":"FusionBrew - The FusionCharts Blog","description":"Get tips and tricks on how to build effective Data Visualisation using FusionCharts","publisher":{"@id":"https:\/\/www.fusioncharts.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.fusioncharts.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.fusioncharts.com\/blog\/#organization","name":"FusionCharts","url":"https:\/\/www.fusioncharts.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/logo\/image\/","url":"\/blog\/wp-content\/uploads\/2020\/03\/idera-fc-logo.svg","contentUrl":"\/blog\/wp-content\/uploads\/2020\/03\/idera-fc-logo.svg","width":1,"height":1,"caption":"FusionCharts"},"image":{"@id":"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/person\/8eb7f0f8a0a21351a003150290d41ac6","name":"guest","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/person\/image\/328482cd2c44c22cbfaf38e6113a8a24","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&r=g","caption":"guest"},"url":"https:\/\/www.fusioncharts.com\/blog\/author\/guest\/"}]}},"_links":{"self":[{"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/posts\/1553","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/users\/15"}],"replies":[{"embeddable":true,"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/comments?post=1553"}],"version-history":[{"count":0,"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/posts\/1553\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/media?parent=1553"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/categories?post=1553"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/tags?post=1553"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/coauthors?post=1553"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}