{"id":4777,"date":"2009-09-15T15:01:09","date_gmt":"2009-09-15T15:01:09","guid":{"rendered":"http:\/\/blog2.fusioncharts.com\/?p=16"},"modified":"2026-01-20T14:42:19","modified_gmt":"2026-01-20T09:12:19","slug":"how-to-use-fusioncharts-in-windows-net-applications-winforms","status":"publish","type":"post","link":"https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/","title":{"rendered":"How to Use FusionCharts in Windows .NET Applications (WinForms) 2026"},"content":{"rendered":"<p>FusionCharts is constantly striving to make your life as simple as possible; you may use a <a href=\"https:\/\/www.fusioncharts.com\/javascript-charting-comparison\/\">Data Visualization Tool<\/a> to Compare JavaScript charting libraries and choose the best charting library from numerous JavaScript charting libraries available in the market.<\/p>\n<p>A user recently requested that FusionCharts javascript charts be embedded in a payroll application; he was developing &#8211; a Windows.NET desktop application. After assisting him with this, we realized that you might need the same for your application.<\/p>\n<p>In this post, we will go over the fundamental steps for embedding FusionCharts in your Windows.NET application.<\/p>\n<p><!--more--><\/p>\n<h2>Steps to Embed FusionCharts<\/h2>\n<p>Our chosen language for development is C#. You can use any basic IDE \u2013 we used the Microsoft Visual C# 2008 Express Edition. Make sure you have Adobe Flash Player 8 or higher installed. If you don&#8217;t, you can download the same from <a title=\"Adobe Flash Player Download\" href=\"https:\/\/www.adobe.com\/products\/flashplayer\/end-of-life-alternative.html\" target=\"_blank\" rel=\"noopener noreferrer\">here<\/a>.<\/p>\n<p>1. Create a new <em>Windows Forms Application Project<\/em>. In the <em>Design View<\/em>, right-click on the Toolbox and click on <em>Choose Items<\/em>.<\/p>\n<p class=\"image-center\"><img decoding=\"async\" class=\"asset-image\" title=\"Choose Items from Design View in WinForms Application Project\" src=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/images\/6a010534c80b99970c0120a570e1b9970b-800wi.jpg\" alt=\"Choose Items from Design View in WinForms Application Project\" border=\"0\" \/><\/p>\n<p>2. In the <em>Choose Toolbox Items<\/em> dialog box, under the <em>COM Components<\/em> tab, select <em>Shockwave Flash Object<\/em>. If this object is not being displayed, then please check whether Flash Player is installed on your system.<\/p>\n<p class=\"image-center\"><img decoding=\"async\" class=\"asset-image\" title=\"Inserting Shockwave Flash Object from Toolbox Items\" src=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/images\/6a010534c80b99970c0120a5c77efc970c-800wi.jpg\" alt=\"Inserting Shockwave Flash Object from Toolbox Items\" border=\"0\" \/><\/p>\n<p>3. Right at the bottom in your Toolbox, an object titled <em>Shockwave Flash Object<\/em> will be included. Select and drag it onto your form. In the Properties Window, change its name to <em>ChartContainer<\/em>. If the name already didn&#8217;t suggest so, this is where the chart will be displayed.<\/p>\n<p class=\"image-center\"><img decoding=\"async\" class=\"asset-image\" title=\"Dragging Shockwave Flash Object to the form\" src=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/images\/6a010534c80b99970c0120a5c780d6970c-800wi.jpg\" alt=\"Dragging Shockwave Flash Object to the form\" border=\"0\" \/><\/p>\n<p>4. Finally add a button to your form. Change its name to <em>btnLoadChart<\/em> and its text to <em>Load Chart<\/em> from the Properties Window. That will complete the design aspect of things. The final form would look as follows:<\/p>\n<p class=\"image-center\"><img decoding=\"async\" class=\"asset-image\" title=\"The final design of the form\" src=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/images\/6a010534c80b99970c0120a570eab7970b-800wi.jpg\" alt=\"The final design of the form\" \/><\/p>\n<p>5. Now that we are done with the design, let&#8217;s get down to coding. When you click the button <em>btnLoadChart<\/em> it will load the chart. While in the <em>btnLoadChart_Click<\/em> event, add the following code:<\/p>\n<pre class=\"lang:javascript\">{\r\n \/\/Specify the format, path and name of the swf file which will render the chart.\r\n\/\/if \"file:\/\/\/\" is added before the path and the XML after the path in the format\r\n\/\/file:\/\/\/XMLpath?=dataXML=\u00aeisterwithjs=1\r\n\/\/then the chart will be loaded directly with no possibilities of any error. For a different chart, change the\r\n\/\/name from column2d to the required chart, add the chart swf to the application startuppath and modify the XML as required.\r\n       string appPath = \"file:\/\/\/\" + Application.StartupPath + \"Column2D.swf\";\r\n       \/\/replace all \"\" in the path with \"\/\"\r\n       appPath = appPath.Replace(\"\", \"\/\");\r\n       \/\/Creating the string which will act as the XML according to the format\r\n       \/\/file:\/\/\/XMLpath?=dataXML=\u00aeisterwithjs=1\r\n       string ChartXML = appPath + @\"?dataXML= \u00aeisterwithjs=1\";\r\n\/\/Passing the above string into the required parameter of the flash movie.\r\nChartContainer.Movie = ChartXML;\r\n }<\/pre>\n<p>You can modify the chart XML to suit your needs. If you run the application now and click on the <em>Load Chart<\/em> button, it will generate the chart.<\/p>\n<p class=\"image-center\"><img decoding=\"async\" class=\"asset-image\" title=\"The final chart generated using WinForms\" src=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/images\/6a010534c80b99970c0120a570ed50970b-800wi.jpg\" alt=\"The final chart generated using WinForms\" border=\"0\" \/><\/p>\n<p>Simple, isn&#8217;t it? It opens endless possibilities for you! Once you embed a chart in your form, you can design interactive charts using either user-entered data or a remote data file. You can also export the charts as images or their data as a CSV file. We will see how to do it all in our next post. So try this out in the meantime, and don&#8217;t forget to come back for the next part! Now you can also use <a href=\"https:\/\/www.fusioncharts.com\/jquery-charts\/\" target=\"_blank\" rel=\"noopener noreferrer\">jQuery charts<\/a> for creating interactive charts and graphs.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>FusionCharts is constantly striving to make your life as simple as possible; you may use a Data Visualization Tool to Compare JavaScript charting libraries and choose the best charting library from numerous JavaScript charting libraries available in the market. A user recently requested that FusionCharts javascript charts be embedded in a payroll application; he was [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[18],"tags":[62,120,128,398],"coauthors":[718],"class_list":["post-4777","post","type-post","status-publish","format-standard","hentry","category-tutorials","tag-c","tag-dotnet","tag-export","tag-winforms"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to use FusionCharts in Windows .NET Applications<\/title>\n<meta name=\"description\" content=\"Getting started with FusionCharts in Windows .NET WinForms apps. Part 1 covers installation, project setup, and rendering your first interactive chart in a desktop app.\" \/>\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\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to use FusionCharts in Windows .NET Applications\" \/>\n<meta property=\"og:description\" content=\"Getting started with FusionCharts in Windows .NET WinForms apps. Part 1 covers installation, project setup, and rendering your first interactive chart in a desktop app.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/\" \/>\n<meta property=\"og:site_name\" content=\"FusionBrew - The FusionCharts Blog\" \/>\n<meta property=\"article:published_time\" content=\"2009-09-15T15:01:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-20T09:12:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/images\/6a010534c80b99970c0120a570e1b9970b-800wi.jpg\" \/>\n<meta name=\"author\" content=\"Shamasis Bhattacharya\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Shamasis Bhattacharya\" \/>\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\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/#article\",\n\t            \"isPartOf\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/\"\n\t            },\n\t            \"author\": {\n\t                \"name\": \"Shamasis Bhattacharya\",\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/person\/cfce3e3c2ecb07767d8d2b84490460f7\"\n\t            },\n\t            \"headline\": \"How to Use FusionCharts in Windows .NET Applications (WinForms) 2026\",\n\t            \"datePublished\": \"2009-09-15T15:01:09+00:00\",\n\t            \"dateModified\": \"2026-01-20T09:12:19+00:00\",\n\t            \"mainEntityOfPage\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/\"\n\t            },\n\t            \"wordCount\": 443,\n\t            \"commentCount\": 24,\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\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/#primaryimage\"\n\t            },\n\t            \"thumbnailUrl\": \"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/images\/6a010534c80b99970c0120a570e1b9970b-800wi.jpg\",\n\t            \"keywords\": [\n\t                \"c#\",\n\t                \"dotnet\",\n\t                \"export\",\n\t                \"winforms\"\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\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/#respond\"\n\t                    ]\n\t                }\n\t            ]\n\t        },\n\t        {\n\t            \"@type\": \"WebPage\",\n\t            \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/\",\n\t            \"url\": \"https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/\",\n\t            \"name\": \"How to use FusionCharts in Windows .NET Applications\",\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\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/#primaryimage\"\n\t            },\n\t            \"image\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/#primaryimage\"\n\t            },\n\t            \"thumbnailUrl\": \"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/images\/6a010534c80b99970c0120a570e1b9970b-800wi.jpg\",\n\t            \"datePublished\": \"2009-09-15T15:01:09+00:00\",\n\t            \"dateModified\": \"2026-01-20T09:12:19+00:00\",\n\t            \"description\": \"Getting started with FusionCharts in Windows .NET WinForms apps. Part 1 covers installation, project setup, and rendering your first interactive chart in a desktop app.\",\n\t            \"breadcrumb\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/#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\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/\"\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\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/#primaryimage\",\n\t            \"url\": \"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/images\/6a010534c80b99970c0120a570e1b9970b-800wi.jpg\",\n\t            \"contentUrl\": \"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/images\/6a010534c80b99970c0120a570e1b9970b-800wi.jpg\"\n\t        },\n\t        {\n\t            \"@type\": \"BreadcrumbList\",\n\t            \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/#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\": \"How to Use FusionCharts in Windows .NET Applications (WinForms) 2026\"\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\/cfce3e3c2ecb07767d8d2b84490460f7\",\n\t            \"name\": \"Shamasis Bhattacharya\",\n\t            \"image\": {\n\t                \"@type\": \"ImageObject\",\n\t                \"inLanguage\": \"en-US\",\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/person\/image\/ed27a4cd012abbe8b9e545e1815f0781\",\n\t                \"url\": \"\/blog\/wp-content\/wphb-cache\/gravatar\/ca8\/ca8f277e2c21f1bcf6b56e4364e15157x96.jpg\",\n\t                \"contentUrl\": \"\/blog\/wp-content\/wphb-cache\/gravatar\/ca8\/ca8f277e2c21f1bcf6b56e4364e15157x96.jpg\",\n\t                \"caption\": \"Shamasis Bhattacharya\"\n\t            },\n\t            \"url\": \"https:\/\/www.fusioncharts.com\/blog\/author\/shamasis\/\"\n\t        }\n\t    ]\n\t}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to use FusionCharts in Windows .NET Applications","description":"Getting started with FusionCharts in Windows .NET WinForms apps. Part 1 covers installation, project setup, and rendering your first interactive chart in a desktop app.","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\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/","og_locale":"en_US","og_type":"article","og_title":"How to use FusionCharts in Windows .NET Applications","og_description":"Getting started with FusionCharts in Windows .NET WinForms apps. Part 1 covers installation, project setup, and rendering your first interactive chart in a desktop app.","og_url":"https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/","og_site_name":"FusionBrew - The FusionCharts Blog","article_published_time":"2009-09-15T15:01:09+00:00","article_modified_time":"2026-01-20T09:12:19+00:00","og_image":[{"url":"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/images\/6a010534c80b99970c0120a570e1b9970b-800wi.jpg","type":"","width":"","height":""}],"author":"Shamasis Bhattacharya","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Shamasis Bhattacharya","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/#article","isPartOf":{"@id":"https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/"},"author":{"name":"Shamasis Bhattacharya","@id":"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/person\/cfce3e3c2ecb07767d8d2b84490460f7"},"headline":"How to Use FusionCharts in Windows .NET Applications (WinForms) 2026","datePublished":"2009-09-15T15:01:09+00:00","dateModified":"2026-01-20T09:12:19+00:00","mainEntityOfPage":{"@id":"https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/"},"wordCount":443,"commentCount":24,"publisher":{"@id":"https:\/\/www.fusioncharts.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/#primaryimage"},"thumbnailUrl":"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/images\/6a010534c80b99970c0120a570e1b9970b-800wi.jpg","keywords":["c#","dotnet","export","winforms"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/","url":"https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/","name":"How to use FusionCharts in Windows .NET Applications","isPartOf":{"@id":"https:\/\/www.fusioncharts.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/#primaryimage"},"image":{"@id":"https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/#primaryimage"},"thumbnailUrl":"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/images\/6a010534c80b99970c0120a570e1b9970b-800wi.jpg","datePublished":"2009-09-15T15:01:09+00:00","dateModified":"2026-01-20T09:12:19+00:00","description":"Getting started with FusionCharts in Windows .NET WinForms apps. Part 1 covers installation, project setup, and rendering your first interactive chart in a desktop app.","breadcrumb":{"@id":"https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/#primaryimage","url":"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/images\/6a010534c80b99970c0120a570e1b9970b-800wi.jpg","contentUrl":"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/images\/6a010534c80b99970c0120a570e1b9970b-800wi.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.fusioncharts.com\/blog\/how-to-use-fusioncharts-in-windows-net-applications-winforms\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.fusioncharts.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Use FusionCharts in Windows .NET Applications (WinForms) 2026"}]},{"@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\/cfce3e3c2ecb07767d8d2b84490460f7","name":"Shamasis Bhattacharya","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/person\/image\/ed27a4cd012abbe8b9e545e1815f0781","url":"\/blog\/wp-content\/wphb-cache\/gravatar\/ca8\/ca8f277e2c21f1bcf6b56e4364e15157x96.jpg","contentUrl":"\/blog\/wp-content\/wphb-cache\/gravatar\/ca8\/ca8f277e2c21f1bcf6b56e4364e15157x96.jpg","caption":"Shamasis Bhattacharya"},"url":"https:\/\/www.fusioncharts.com\/blog\/author\/shamasis\/"}]}},"_links":{"self":[{"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/posts\/4777","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\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/comments?post=4777"}],"version-history":[{"count":0,"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/posts\/4777\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/media?parent=4777"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/categories?post=4777"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/tags?post=4777"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/coauthors?post=4777"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}