{"id":1287,"date":"2011-06-03T19:42:08","date_gmt":"2011-06-03T14:12:08","guid":{"rendered":"http:\/\/blog.fusioncharts.com\/?p=1287"},"modified":"2026-01-20T14:40:42","modified_gmt":"2026-01-20T09:10:42","slug":"fusioncharts-can-now-be-your-gwt-charting-plugin","status":"publish","type":"post","link":"https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/","title":{"rendered":"FusionCharts Can Now Be Your GWT Charting Plugin 2026"},"content":{"rendered":"A new addition to the collection of community plugins for FusionCharts is the latest GWT plugin created by Fadi Al-Katout of Aurora R&amp;D. This plugin was initially supposed to be a proof of concept for a client, and is now a full fledged plugin. FusionCharts for GWT lets you integrate FusionCharts in your applications in a seamless way, with full support for GXT and Smart GWT.\r\n\r\n<!--more-->\r\n\r\nGWT (Google Web Toolkit) makes it easy to write AJAX apps for developers who don\u2019t speak browser quirks as a second language. Being in Java, GWT is gaining immense popularity among enterprise developers who are looking for a more powerful solution for their rich web apps. GWT lets you develop and debug your client-side AJAX code using the Java language and the Java tools of your choice. When you\u2019re ready to deploy, GWT can cross-compile your application into a pure JavaScript form that works identical across most modern AJAX-capable browsers.\r\n\r\nIn this plugin, a chart is a GWT widget which you can simply manipulate and use in your application. This plugin also provides an object-oriented data structure for building the chart\u2019s data, meaning that you not need pass data to the chart as an XML or JSON string (although you still can). Instead, you can build the data module using high-level Java objects. A laundry list of a few important aspects of this plugin follows:\r\n<ul>\r\n\t<li> Standard procedure to create your charts<\/li>\r\n\t<li>Full support for all chart properties<\/li>\r\n\t<li>Dynamically name your divs<\/li>\r\n\t<li>Dynamically resize your charts<\/li>\r\n\t<li>Advanced chart data options<\/li>\r\n\t<li>Pure client side solution<\/li>\r\n\t<li>Fully compatible with GXT and Smart GWT<\/li>\r\n\t<li>Cross browser compatibility<\/li>\r\n<\/ul>\r\nYou would require Java 1.6 or higher, GWT 2.0 or higher and FusionCharts v3.2 to get started.\r\n\r\nWhile GWT does not have any charts baked right in, there are a couple of other plugins doing it using a combination of HTML, SVG and JavaScript. However, none of them add up to the wide range of charts, enterprise features and visual oomph that FusionCharts provides.\r\n\r\nLet us see how we can begin creating charts using this plugin.\r\n<ol>\r\n\t<li><a title=\"Download FusionCharts trial\" href=\"https:\/\/www.fusioncharts.com\/download\/\/\" target=\"_blank\" rel=\"noopener noreferrer\">Download the evaluation version of FusionCharts v3.2<\/a><\/li>\r\n\t<li><a title=\"Buy FusionCharts for GWT plugin\" href=\"https:\/\/cart.fusioncharts.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">Buy the GWT plugin<\/a> from Aurora R&amp;D<\/li>\r\n\t<li>Extract the archive and put gfcharts.jar in your build path.<\/li>\r\n\t<li>Inherit gfcharts in your gwt.xml file:\r\n<code lang=\"xml\"><\/code><\/li>\r\n\t<li>In your war folder, add the .swf and .js files from the FusionCharts pack in resources &gt; chart &gt; fusion<\/li>\r\n\t<li>Include FusionCharts.js in your application\u2019s .html file<\/li>\r\n\t<li>Import the plugin\u2019s client package in your client file:\r\n<code lang=\"js\">import com.aurorarnd.gfcharts.client.*;<\/code>\r\nThis is how my Project Explorer sidebar looks like. I have named the project as hellocharts.\r\n\r\n<img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1331 aligncenter\" title=\"Project Explorer sidebar\" src=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/06\/projectexplorer.gif\" alt=\"Project Explorer sidebar\" height=\"331\" width=\"322\" \/><\/li>\r\n\t<li>Write code for your chart! Let us create a Pie Chart.<\/li>\r\n<\/ol>\r\n\r\n<pre class=\"lang:java\">\/\/ Create the Data Object\r\nFusionChartData chartData = new FusionChartData();\r\n\/\/ Add Chart Properties\r\nchartData.addChartProperty(\"caption\", \"Pie Chart\");\r\nchartData.addChartProperty(\"numberPrefix\", \"$\");\r\n\/\/ Add Data Sets to Chart\r\n\/\/ Create Data Set\r\nFusionChartDataSet dataSet = new FusionChartDataSet(\"Item A\", \"25\");\r\ndataSet.addDataSetProperty(\"color\", \"AFD8F8\");\r\nchartData.addDataSet(dataSet);\r\n\/\/ Create Data Point\r\n\/\/ (data set for this plugin; data point with respect to FusionCharts)\r\ndataSet = new FusionChartDataSet(\"Item B\", \"17\");\r\ndataSet.addDataSetProperty(\"color\", \"F6BD0F\");\r\nchartData.addDataSet(dataSet);\r\n\/\/ Create Data Point\r\ndataSet = new FusionChartDataSet(\"Item C\", \"23\");\r\ndataSet.addDataSetProperty(\"color\", \"8BBA00\");\r\ndataSet.addDataSetProperty(\"isSliced\", \"1\");\r\nchartData.addDataSet(dataSet);\r\n\/\/ Create Data Point\r\ndataSet = new FusionChartDataSet(\"Item D\", \"65\");\r\ndataSet.addDataSetProperty(\"color\", \"A66EDD\");\r\nchartData.addDataSet(dataSet);\r\n\/\/ Finally create the chart itself\r\nFusionChartWidget chart = new FusionChartWidget(FusionCharts.Pie2D,\r\nchartData);\r\nchart.setTransparent(true);\r\n\/\/ Now add it to a container\r\nsomePanel.add(chart);<\/pre>\r\nAnd the resulting pie chart is shown below:\r\n\r\n<img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-1330\" title=\"Pie chart created using FusionCharts for GWT\" src=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/06\/pie.gif\" alt=\"Pie chart created using FusionCharts for GWT\" height=\"422\" width=\"593\" \/>\r\n\r\nIf you find creating Java data objects too verbose for your tastes, you can always provide the data using the XMLUrl, JSONUrl, XMLString or JSONString as usual.\r\n\r\nA pie chart was easy enough to create, now let us make a multi-series dual Y-axis chart.\r\n\r\nOne thing to note here, while creating a multi-series chart, you will have to create an object for <code lang=\"js\">FusionChartExtendedData<\/code>, and not <code lang=\"js\">FusionChartData<\/code> as we had done above. Also, being a multi-series chart, you have to set the data values for each series appropriately. We will also specify the primary and secondary Y-axes in this chart. Let us see how.\r\n\r\nCreate a new project if you would like to in Eclipse, or just delete the code for the previous pie chart code and begin with this new code.\r\n<pre class=\"lang:java\">\/\/ Create the Data Object\r\nFusionChartExtendedData chartData = new FusionChartExtendedData();\r\n\/\/ Add Chart Properties\r\nchartData.addChartProperty(\"caption\", \"Population Chart\");\r\nchartData.addChartProperty(\"showValues\", \"0\");\r\nchartData.addChartProperty(\"sNumberSuffix\", \"%\");\r\nchartData.addChartProperty(\"decimals\", \"3\");\r\nchartData.addChartProperty(\"setAdaptiveYMin\", \"1\");\r\nchartData.addChartProperty(\"setAdaptiveSYMin\", \"1\");\r\nchartData.addChartProperty(\"lineThickness\", \"5\");\r\n\/\/ Add Chart Categories\r\nchartData.addCategory(\"2000\");\r\nchartData.addCategory(\"2001\");\r\nchartData.addCategory(\"2002\");\r\nchartData.addCategory(\"2003\");\r\nchartData.addCategory(\"2004\");\r\nchartData.addCategory(\"2005\");\r\n\/\/ Create Data Set\r\nFusionChartExtendedDataSet dataSet = new FusionChartExtendedDataSet();\r\n\/\/ Add Data Set Properties\r\ndataSet.addDataSetProperty(\"seriesname\", \"Population\");\r\n\/\/ Add Data Set Values\r\ndataSet.addValue(\"275562673\");\r\ndataSet.addValue(\"278558081\");\r\ndataSet.addValue(\"280562489\");\r\ndataSet.addValue(\"290342551\");\r\ndataSet.addValue(\"290342551\");\r\ndataSet.addValue(\"293027112\");\r\n\/\/ Add Data Set To The Chart Data Object\r\nchartData.addDataSet(dataSet);\r\n\/\/ Create Data Set\r\ndataSet = new FusionChartExtendedDataSet();\r\n\/\/ Add Data Set Properties\r\ndataSet.addDataSetProperty(\"parentYAxis\", \"S\");\r\ndataSet.addDataSetProperty(\"seriesname\", \"Birth Rate\");\r\n\/\/ Add Data Set Values\r\ndataSet.addValue(\"1.42\");\r\ndataSet.addValue(\"1.42\");\r\ndataSet.addValue(\"1.41\");\r\ndataSet.addValue(\"1.414\");\r\ndataSet.addValue(\"1.413\");\r\ndataSet.addValue(\"1.414\");\r\n\/\/ Add Data Set To The Chart Data Object\r\nchartData.addDataSet(dataSet);\r\n\/\/ Create Data Set\r\ndataSet = new FusionChartExtendedDataSet();\r\n\/\/ Add Data Set Properties\r\ndataSet.addDataSetProperty(\"parentYAxis\", \"S\");\r\ndataSet.addDataSetProperty(\"seriesname\", \"Death Rate\");\r\n\/\/ Add Data Set Values\r\ndataSet.addValue(\"0.87\");\r\ndataSet.addValue(\"0.87\");\r\ndataSet.addValue(\"0.87\");\r\ndataSet.addValue(\"0.844\");\r\ndataSet.addValue(\"0.834\");\r\ndataSet.addValue(\"0.825\");\r\n\/\/ Add Data Set To The Chart Data Object\r\nchartData.addDataSet(dataSet);\r\n\/\/ Finally Create The Chart Itself\r\nFusionChartWidget chart = new FusionChartWidget(FusionCharts.MSCombiDY2D, chartData);\r\nchart.setTransparent(true);\r\n\/\/ Now add it to a container\r\nsomePanel.add(chart);<\/pre>\r\nFinally, the resulting chart would look as the one below:\r\n\r\n<img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-1329\" title=\"Multi-series chart created using FusionCharts for GWT\" src=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/06\/mschart.gif\" alt=\"Multi-series chart created using FusionCharts for GWT\" height=\"385\" width=\"575\" \/>\r\n\r\nSince we are using FusionCharts v3.2, all charts will be rendered using JavaScript if the Flash plugin isn\u2019t installed. So your users can access your GWT app from their iPhones and iPads, and still have an amazing charting experience.\r\n\r\nDo give the new plugin a spin from the FusionCharts for GWT plugin page. Use it and tell us how things can be done better. And if you are using any other GWT plugin for charts, do let us know how it serves you better. As always, we appreciate all feedback.","protected":false},"excerpt":{"rendered":"<p>A new addition to the collection of community plugins for FusionCharts is the latest GWT plugin created by Fadi Al-Katout of Aurora R&amp;D. This plugin was initially supposed to be a proof of concept for a client, and is now a full fledged plugin. FusionCharts for GWT lets you integrate FusionCharts in your applications in a seamless way, with full support for GXT and Smart GWT.<\/p>\n","protected":false},"author":14,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[16],"tags":[],"coauthors":[715],"class_list":["post-1287","post","type-post","status-publish","format-standard","hentry","category-news-announcements"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>FusionCharts Can Now Be Your GWT Charting Plugin 2026<\/title>\n<meta name=\"description\" content=\"Integrate FusionCharts into your GWT applications seamlessly. Our 2026 plugin offers full support for GXT and Smart GWT for developers. Try it out 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\/fusioncharts-can-now-be-your-gwt-charting-plugin\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"FusionCharts Can Now Be Your GWT Charting Plugin 2026\" \/>\n<meta property=\"og:description\" content=\"Integrate FusionCharts into your GWT applications seamlessly. Our 2026 plugin offers full support for GXT and Smart GWT for developers. Try it out today.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/\" \/>\n<meta property=\"og:site_name\" content=\"FusionBrew - The FusionCharts Blog\" \/>\n<meta property=\"article:published_time\" content=\"2011-06-03T14:12:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-20T09:10:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/06\/projectexplorer.gif\" \/>\n\t<meta property=\"og:image:width\" content=\"322\" \/>\n\t<meta property=\"og:image:height\" content=\"331\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/gif\" \/>\n<meta name=\"author\" content=\"rishi\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"rishi\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 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\/fusioncharts-can-now-be-your-gwt-charting-plugin\/#article\",\n\t            \"isPartOf\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/\"\n\t            },\n\t            \"author\": {\n\t                \"name\": \"rishi\",\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/person\/132d68250c34b957c87330353d8eaa5a\"\n\t            },\n\t            \"headline\": \"FusionCharts Can Now Be Your GWT Charting Plugin 2026\",\n\t            \"datePublished\": \"2011-06-03T14:12:08+00:00\",\n\t            \"dateModified\": \"2026-01-20T09:10:42+00:00\",\n\t            \"mainEntityOfPage\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/\"\n\t            },\n\t            \"wordCount\": 694,\n\t            \"commentCount\": 0,\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\/fusioncharts-can-now-be-your-gwt-charting-plugin\/#primaryimage\"\n\t            },\n\t            \"thumbnailUrl\": \"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/06\/projectexplorer.gif\",\n\t            \"articleSection\": [\n\t                \"News &amp; Announcements\"\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\/fusioncharts-can-now-be-your-gwt-charting-plugin\/#respond\"\n\t                    ]\n\t                }\n\t            ]\n\t        },\n\t        {\n\t            \"@type\": \"WebPage\",\n\t            \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/\",\n\t            \"url\": \"https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/\",\n\t            \"name\": \"FusionCharts Can Now Be Your GWT Charting Plugin 2026\",\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\/fusioncharts-can-now-be-your-gwt-charting-plugin\/#primaryimage\"\n\t            },\n\t            \"image\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/#primaryimage\"\n\t            },\n\t            \"thumbnailUrl\": \"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/06\/projectexplorer.gif\",\n\t            \"datePublished\": \"2011-06-03T14:12:08+00:00\",\n\t            \"dateModified\": \"2026-01-20T09:10:42+00:00\",\n\t            \"description\": \"Integrate FusionCharts into your GWT applications seamlessly. Our 2026 plugin offers full support for GXT and Smart GWT for developers. Try it out today.\",\n\t            \"breadcrumb\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/#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\/fusioncharts-can-now-be-your-gwt-charting-plugin\/\"\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\/fusioncharts-can-now-be-your-gwt-charting-plugin\/#primaryimage\",\n\t            \"url\": \"\/blog\/wp-content\/uploads\/2011\/06\/projectexplorer.gif\",\n\t            \"contentUrl\": \"\/blog\/wp-content\/uploads\/2011\/06\/projectexplorer.gif\",\n\t            \"width\": 322,\n\t            \"height\": 331,\n\t            \"caption\": \"Project Explorer sidebar\"\n\t        },\n\t        {\n\t            \"@type\": \"BreadcrumbList\",\n\t            \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/#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\": \"FusionCharts Can Now Be Your GWT Charting Plugin 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\/132d68250c34b957c87330353d8eaa5a\",\n\t            \"name\": \"rishi\",\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\": \"rishi\"\n\t            },\n\t            \"url\": \"https:\/\/www.fusioncharts.com\/blog\/author\/rishi\/\"\n\t        }\n\t    ]\n\t}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"FusionCharts Can Now Be Your GWT Charting Plugin 2026","description":"Integrate FusionCharts into your GWT applications seamlessly. Our 2026 plugin offers full support for GXT and Smart GWT for developers. Try it out 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\/fusioncharts-can-now-be-your-gwt-charting-plugin\/","og_locale":"en_US","og_type":"article","og_title":"FusionCharts Can Now Be Your GWT Charting Plugin 2026","og_description":"Integrate FusionCharts into your GWT applications seamlessly. Our 2026 plugin offers full support for GXT and Smart GWT for developers. Try it out today.","og_url":"https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/","og_site_name":"FusionBrew - The FusionCharts Blog","article_published_time":"2011-06-03T14:12:08+00:00","article_modified_time":"2026-01-20T09:10:42+00:00","og_image":[{"width":322,"height":331,"url":"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/06\/projectexplorer.gif","type":"image\/gif"}],"author":"rishi","twitter_card":"summary_large_image","twitter_misc":{"Written by":"rishi","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/#article","isPartOf":{"@id":"https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/"},"author":{"name":"rishi","@id":"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/person\/132d68250c34b957c87330353d8eaa5a"},"headline":"FusionCharts Can Now Be Your GWT Charting Plugin 2026","datePublished":"2011-06-03T14:12:08+00:00","dateModified":"2026-01-20T09:10:42+00:00","mainEntityOfPage":{"@id":"https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/"},"wordCount":694,"commentCount":0,"publisher":{"@id":"https:\/\/www.fusioncharts.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/#primaryimage"},"thumbnailUrl":"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/06\/projectexplorer.gif","articleSection":["News &amp; Announcements"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/","url":"https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/","name":"FusionCharts Can Now Be Your GWT Charting Plugin 2026","isPartOf":{"@id":"https:\/\/www.fusioncharts.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/#primaryimage"},"image":{"@id":"https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/#primaryimage"},"thumbnailUrl":"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2011\/06\/projectexplorer.gif","datePublished":"2011-06-03T14:12:08+00:00","dateModified":"2026-01-20T09:10:42+00:00","description":"Integrate FusionCharts into your GWT applications seamlessly. Our 2026 plugin offers full support for GXT and Smart GWT for developers. Try it out today.","breadcrumb":{"@id":"https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/#primaryimage","url":"\/blog\/wp-content\/uploads\/2011\/06\/projectexplorer.gif","contentUrl":"\/blog\/wp-content\/uploads\/2011\/06\/projectexplorer.gif","width":322,"height":331,"caption":"Project Explorer sidebar"},{"@type":"BreadcrumbList","@id":"https:\/\/www.fusioncharts.com\/blog\/fusioncharts-can-now-be-your-gwt-charting-plugin\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.fusioncharts.com\/blog\/"},{"@type":"ListItem","position":2,"name":"FusionCharts Can Now Be Your GWT Charting Plugin 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\/132d68250c34b957c87330353d8eaa5a","name":"rishi","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":"rishi"},"url":"https:\/\/www.fusioncharts.com\/blog\/author\/rishi\/"}]}},"_links":{"self":[{"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/posts\/1287","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\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/comments?post=1287"}],"version-history":[{"count":0,"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/posts\/1287\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/media?parent=1287"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/categories?post=1287"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/tags?post=1287"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/coauthors?post=1287"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}