<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic internet explorer 8 Pie chart and Bart Chart in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/internet-explorer-8-pie-chart-and-bart-chart/m-p/114615#M10695</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello I am trying to create a dashboard with Pie chart ad Stacked bar chart. I am using Internet Explorer 8 (official Internet browser of the company). When the rendering happens, I get random results. Please see below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="97453" alt="PieChart_BarChart_IE8_Problems.png" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/97453_PieChart_BarChart_IE8_Problems.png" style="width: 620px; height: 244px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;size of the bar chart and font are not at all consistent .&lt;/P&gt;&lt;P&gt;It should be a CSS problem because when I use Chrome or Firefox I get normal charts.&lt;/P&gt;&lt;P&gt;This is a small piece of my code&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "&lt;A class="jive-link-external-small" href="http://www.w3.org/TR/html4/loose.dtd" rel="nofollow noopener noreferrer" target="_blank"&gt;http://www.w3.org/TR/html4/loose.dtd&lt;/A&gt;"&amp;gt;
&amp;lt;html&amp;gt;
&amp;nbsp; &amp;lt;head&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8"&amp;gt; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"&amp;gt;

&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;link rel="stylesheet" href="&lt;A class="jive-link-external-small" href="http://js.arcgis.com/3.13/dijit/themes/soria/soria.css" rel="nofollow noopener noreferrer" target="_blank"&gt;http://js.arcgis.com/3.13/dijit/themes/soria/soria.css&lt;/A&gt;"&amp;gt;
&amp;nbsp; &amp;lt;link rel="stylesheet" href="&lt;A class="jive-link-external-small" href="http://js.arcgis.com/3.13/dojox/layout/resources/ExpandoPane.css" rel="nofollow noopener noreferrer" target="_blank"&gt;http://js.arcgis.com/3.13/dojox/layout/resources/ExpandoPane.css&lt;/A&gt;"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;link rel="stylesheet" href="&lt;A class="jive-link-external-small" href="http://js.arcgis.com/3.13/esri/css/esri.css" rel="nofollow noopener noreferrer" target="_blank"&gt;http://js.arcgis.com/3.13/esri/css/esri.css&lt;/A&gt;"&amp;gt;


&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;link rel="stylesheet" href="CSS/newPortal.css"&amp;gt;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;script src="&lt;A class="jive-link-external-small" href="http://js.arcgis.com/3.13/" rel="nofollow noopener noreferrer" target="_blank"&gt;http://js.arcgis.com/3.13/&lt;/A&gt;"&amp;gt;&amp;lt;/script&amp;gt;
&amp;nbsp; 
&amp;nbsp; &amp;lt;/head&amp;gt; 
&amp;nbsp; &amp;lt;script&amp;gt;
require(["dojox/charting/Chart", "dojox/charting/plot2d/Pie", "dojox/charting/action2d/Highlight",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "dojox/charting/action2d/MoveSlice" , "dojox/charting/action2d/Tooltip",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "dojox/charting/themes/MiamiNice", "dojox/charting/widget/Legend",&amp;nbsp;&amp;nbsp; "dojox/charting/axis2d/Default",&amp;nbsp; "dojox/charting/plot2d/StackedColumns",&amp;nbsp;&amp;nbsp;&amp;nbsp; "dojox/charting/action2d/Magnify", "dojox/charting/widget/SelectableLegend", "dojo/ready"],
&amp;nbsp; function(Chart, Pie, Highlight, MoveSlice, Tooltip, MiamiNice, Legend,&amp;nbsp; Default, StackedColumns, Magnify, SelectableLegend,ready){
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; var pieChart = new Chart("pieChart");
&amp;nbsp; pieChart.title = "BW Sales";
&amp;nbsp;&amp;nbsp;&amp;nbsp; pieChart.setTheme(MiamiNice)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .addPlot("default", {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type: Pie,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; font: "normal normal 11pt Tahoma",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fontColor: "black",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; labelOffset: -30,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; radius: 80
&amp;nbsp;&amp;nbsp;&amp;nbsp; }).addSeries("Series A", [
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {y: 4, text: "Red",&amp;nbsp;&amp;nbsp; stroke: "#9fbf7f", tooltip: "Red is 50%"},
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {y: 2, text: "Green", stroke: "#9fbf7f", tooltip: "Green is 25%"},
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {y: 1, text: "Blue",&amp;nbsp; stroke: "#287acc", tooltip: "I am feeling Blue!"},
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {y: 1, text: "Other", stroke: "287acc", tooltip: "Mighty &amp;lt;strong&amp;gt;strong&amp;lt;/strong&amp;gt;&amp;lt;br&amp;gt;With two lines!"}
&amp;nbsp;&amp;nbsp;&amp;nbsp; ]);
&amp;nbsp;&amp;nbsp;&amp;nbsp; var anim_a = new MoveSlice(pieChart, "default");
&amp;nbsp;&amp;nbsp;&amp;nbsp; var anim_b = new Highlight(pieChart, "default");
&amp;nbsp;&amp;nbsp;&amp;nbsp; var anim_c = new Tooltip(pieChart, "default");
&amp;nbsp;&amp;nbsp;&amp;nbsp; pieChart.render();
&amp;nbsp;&amp;nbsp;&amp;nbsp; var legendTwo = new Legend({chart: pieChart}, "legendTwo");
&amp;nbsp; /*
&amp;nbsp; */


&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var barChart = new dojox.charting.Chart("barChart");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; barChart.addPlot("default",{type: "StackedColumns", gap: 2});
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; barChart.addAxis("x");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; barChart.addAxis("y", {vertical: true, includeZero: true});&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; barChart.addSeries("A", [2,3,5,7,2,4,6], {plot: "default", fill: "blue", stroke: {color: "blue"}});
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; barChart.addSeries("C", [5,4,2,7,5,3,1], {plot: "default", fill: "green", stroke: {color: "green"}}); 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; barChart.addSeries("D", [5,4,2,7,5,3,1], {plot: "default", fill: "red", stroke: {color: "red"}}); 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; barChart.addSeries("E", [5,4,2,7,5,3,1], {plot: "default", fill: "yellow", stroke: {color: "yellow"}}); 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var tooltip = new Tooltip( barChart, "default", {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; text : function(point) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.debug(point);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return "This is " + point.y;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }); 


&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; barChart.render();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var clusteredColumnsLegend = new SelectableLegend({chart: barChart}, "barChartLegend");&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; });
&amp;nbsp;&amp;nbsp;&amp;nbsp; 

&amp;nbsp; &amp;lt;/script&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body class="claro"&amp;gt;
 &amp;lt;div id="pieChart" style="width: 300px; height: 300px;"&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;div id="legendTwo"&amp;gt;&amp;lt;/div&amp;gt; 
&amp;lt;div data-dojo-type="dojox.charting.widget.Chart" id="barChart" style="width: 350px; height: 200px;"&amp;gt;


&amp;lt;/div&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;br/&amp;gt;
&amp;lt;div id="barChartLegend"&amp;gt;&amp;lt;/div&amp;gt; 
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;&lt;/PRE&gt;&lt;P&gt;Would it be possible to know what is the problem? How to resolve it?&lt;/P&gt;&lt;P&gt;I have another questions: is there another way to create charts?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Abel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 06:47:26 GMT</pubDate>
    <dc:creator>AbelLudba</dc:creator>
    <dc:date>2021-12-11T06:47:26Z</dc:date>
    <item>
      <title>internet explorer 8 Pie chart and Bart Chart</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/internet-explorer-8-pie-chart-and-bart-chart/m-p/114615#M10695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello I am trying to create a dashboard with Pie chart ad Stacked bar chart. I am using Internet Explorer 8 (official Internet browser of the company). When the rendering happens, I get random results. Please see below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="97453" alt="PieChart_BarChart_IE8_Problems.png" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/97453_PieChart_BarChart_IE8_Problems.png" style="width: 620px; height: 244px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;size of the bar chart and font are not at all consistent .&lt;/P&gt;&lt;P&gt;It should be a CSS problem because when I use Chrome or Firefox I get normal charts.&lt;/P&gt;&lt;P&gt;This is a small piece of my code&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "&lt;A class="jive-link-external-small" href="http://www.w3.org/TR/html4/loose.dtd" rel="nofollow noopener noreferrer" target="_blank"&gt;http://www.w3.org/TR/html4/loose.dtd&lt;/A&gt;"&amp;gt;
&amp;lt;html&amp;gt;
&amp;nbsp; &amp;lt;head&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8"&amp;gt; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"&amp;gt;

&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;link rel="stylesheet" href="&lt;A class="jive-link-external-small" href="http://js.arcgis.com/3.13/dijit/themes/soria/soria.css" rel="nofollow noopener noreferrer" target="_blank"&gt;http://js.arcgis.com/3.13/dijit/themes/soria/soria.css&lt;/A&gt;"&amp;gt;
&amp;nbsp; &amp;lt;link rel="stylesheet" href="&lt;A class="jive-link-external-small" href="http://js.arcgis.com/3.13/dojox/layout/resources/ExpandoPane.css" rel="nofollow noopener noreferrer" target="_blank"&gt;http://js.arcgis.com/3.13/dojox/layout/resources/ExpandoPane.css&lt;/A&gt;"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;link rel="stylesheet" href="&lt;A class="jive-link-external-small" href="http://js.arcgis.com/3.13/esri/css/esri.css" rel="nofollow noopener noreferrer" target="_blank"&gt;http://js.arcgis.com/3.13/esri/css/esri.css&lt;/A&gt;"&amp;gt;


&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;link rel="stylesheet" href="CSS/newPortal.css"&amp;gt;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;script src="&lt;A class="jive-link-external-small" href="http://js.arcgis.com/3.13/" rel="nofollow noopener noreferrer" target="_blank"&gt;http://js.arcgis.com/3.13/&lt;/A&gt;"&amp;gt;&amp;lt;/script&amp;gt;
&amp;nbsp; 
&amp;nbsp; &amp;lt;/head&amp;gt; 
&amp;nbsp; &amp;lt;script&amp;gt;
require(["dojox/charting/Chart", "dojox/charting/plot2d/Pie", "dojox/charting/action2d/Highlight",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "dojox/charting/action2d/MoveSlice" , "dojox/charting/action2d/Tooltip",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "dojox/charting/themes/MiamiNice", "dojox/charting/widget/Legend",&amp;nbsp;&amp;nbsp; "dojox/charting/axis2d/Default",&amp;nbsp; "dojox/charting/plot2d/StackedColumns",&amp;nbsp;&amp;nbsp;&amp;nbsp; "dojox/charting/action2d/Magnify", "dojox/charting/widget/SelectableLegend", "dojo/ready"],
&amp;nbsp; function(Chart, Pie, Highlight, MoveSlice, Tooltip, MiamiNice, Legend,&amp;nbsp; Default, StackedColumns, Magnify, SelectableLegend,ready){
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; var pieChart = new Chart("pieChart");
&amp;nbsp; pieChart.title = "BW Sales";
&amp;nbsp;&amp;nbsp;&amp;nbsp; pieChart.setTheme(MiamiNice)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .addPlot("default", {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type: Pie,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; font: "normal normal 11pt Tahoma",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fontColor: "black",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; labelOffset: -30,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; radius: 80
&amp;nbsp;&amp;nbsp;&amp;nbsp; }).addSeries("Series A", [
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {y: 4, text: "Red",&amp;nbsp;&amp;nbsp; stroke: "#9fbf7f", tooltip: "Red is 50%"},
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {y: 2, text: "Green", stroke: "#9fbf7f", tooltip: "Green is 25%"},
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {y: 1, text: "Blue",&amp;nbsp; stroke: "#287acc", tooltip: "I am feeling Blue!"},
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {y: 1, text: "Other", stroke: "287acc", tooltip: "Mighty &amp;lt;strong&amp;gt;strong&amp;lt;/strong&amp;gt;&amp;lt;br&amp;gt;With two lines!"}
&amp;nbsp;&amp;nbsp;&amp;nbsp; ]);
&amp;nbsp;&amp;nbsp;&amp;nbsp; var anim_a = new MoveSlice(pieChart, "default");
&amp;nbsp;&amp;nbsp;&amp;nbsp; var anim_b = new Highlight(pieChart, "default");
&amp;nbsp;&amp;nbsp;&amp;nbsp; var anim_c = new Tooltip(pieChart, "default");
&amp;nbsp;&amp;nbsp;&amp;nbsp; pieChart.render();
&amp;nbsp;&amp;nbsp;&amp;nbsp; var legendTwo = new Legend({chart: pieChart}, "legendTwo");
&amp;nbsp; /*
&amp;nbsp; */


&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var barChart = new dojox.charting.Chart("barChart");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; barChart.addPlot("default",{type: "StackedColumns", gap: 2});
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; barChart.addAxis("x");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; barChart.addAxis("y", {vertical: true, includeZero: true});&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; barChart.addSeries("A", [2,3,5,7,2,4,6], {plot: "default", fill: "blue", stroke: {color: "blue"}});
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; barChart.addSeries("C", [5,4,2,7,5,3,1], {plot: "default", fill: "green", stroke: {color: "green"}}); 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; barChart.addSeries("D", [5,4,2,7,5,3,1], {plot: "default", fill: "red", stroke: {color: "red"}}); 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; barChart.addSeries("E", [5,4,2,7,5,3,1], {plot: "default", fill: "yellow", stroke: {color: "yellow"}}); 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var tooltip = new Tooltip( barChart, "default", {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; text : function(point) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.debug(point);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return "This is " + point.y;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }); 


&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; barChart.render();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var clusteredColumnsLegend = new SelectableLegend({chart: barChart}, "barChartLegend");&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; });
&amp;nbsp;&amp;nbsp;&amp;nbsp; 

&amp;nbsp; &amp;lt;/script&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body class="claro"&amp;gt;
 &amp;lt;div id="pieChart" style="width: 300px; height: 300px;"&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;div id="legendTwo"&amp;gt;&amp;lt;/div&amp;gt; 
&amp;lt;div data-dojo-type="dojox.charting.widget.Chart" id="barChart" style="width: 350px; height: 200px;"&amp;gt;


&amp;lt;/div&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;br/&amp;gt;
&amp;lt;div id="barChartLegend"&amp;gt;&amp;lt;/div&amp;gt; 
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;&lt;/PRE&gt;&lt;P&gt;Would it be possible to know what is the problem? How to resolve it?&lt;/P&gt;&lt;P&gt;I have another questions: is there another way to create charts?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Abel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:47:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/internet-explorer-8-pie-chart-and-bart-chart/m-p/114615#M10695</guid>
      <dc:creator>AbelLudba</dc:creator>
      <dc:date>2021-12-11T06:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: internet explorer 8 Pie chart and Bart Chart</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/internet-explorer-8-pie-chart-and-bart-chart/m-p/114616#M10696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have a script error bubbling-up in OperationBase.js. You can try and debug using IE8's dev console (F12). Here's a reference on debugging using IE8 dev tools, if you haven't done this before:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://msdn.microsoft.com/en-us/library/dd565625%28v=vs.85%29.aspx" style="line-height: 1.5;" title="https://msdn.microsoft.com/en-us/library/dd565625%28v=vs.85%29.aspx"&gt;Debugging Script with the Developer Tools (Internet Explorer)&lt;/A&gt;&lt;SPAN style="line-height: 1.5;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The issues you are going to run into, continuously, regard limitations with IE8. Unfortunately, this is a legacy browser, and IE8 has reputation for having a poor JavaScript engine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are probably incompatibilities with v3.13 of the API, or Dojo for that version, although, according to Esri, IE7+ is supported (&lt;A href="https://developers.arcgis.com/javascript/jshelp/supported_browsers.html" title="https://developers.arcgis.com/javascript/jshelp/supported_browsers.html"&gt;Supported Browsers | Guide | ArcGIS API for JavaScript&lt;/A&gt; ), so if you find a bug, they would need to fix it, or provide a workaround.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try using an older version of the API, if possible, just for testing purposes, to see if you can isolate the bug to a specific version. If you find it works in an earlier version, and debugging didn't yield any clues, you could ping Esri to see if this has come-up before.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Honestly, you may have an easier time convincing the powers that be at your organization to upgrade. In January, 2016, only the latest version of IE will be supported for any given, supported Windows OS, so, unless everyone at your organization is running Windows Thin PC, or point-of-sale/embedded Windows, IE8 will not be supported. That means no security patches, bug fixes, etc.:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.microsoft.com/en-us/gp/microsoft-internet-explorer" title="https://support.microsoft.com/en-us/gp/microsoft-internet-explorer"&gt;Internet Explorer Support Lifecycle Policy FAQ&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2015 14:57:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/internet-explorer-8-pie-chart-and-bart-chart/m-p/114616#M10696</guid>
      <dc:creator>ChrisSmith7</dc:creator>
      <dc:date>2015-05-11T14:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: internet explorer 8 Pie chart and Bart Chart</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/internet-explorer-8-pie-chart-and-bart-chart/m-p/114617#M10697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried using the dojo charting capabilities but ran into issues (at the time, our organization also used IE-8 as the standard browser version). I would recommend looking into other options (and there are many). For my situation, I use two different options- the &lt;A href="http://www.highcharts.com/"&gt;Highcharts&lt;/A&gt; JS library and the &lt;A href="https://developers.google.com/chart/"&gt;Google charts API.&lt;/A&gt; You'll have to evaluate either to see which works best for what you have to do. I will note that the Highcharts option does incur a cost (free to evaluate, though) but the cost seemed minimal ($70 for usage on one site/application).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've been pretty happy with Highcharts but you mileage may vary.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2015 15:29:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/internet-explorer-8-pie-chart-and-bart-chart/m-p/114617#M10697</guid>
      <dc:creator>SteveCole</dc:creator>
      <dc:date>2015-05-11T15:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: internet explorer 8 Pie chart and Bart Chart</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/internet-explorer-8-pie-chart-and-bart-chart/m-p/114618#M10698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Highcharts is a pretty nice charting library. It's not too costly, either.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2015 15:36:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/internet-explorer-8-pie-chart-and-bart-chart/m-p/114618#M10698</guid>
      <dc:creator>ChrisSmith7</dc:creator>
      <dc:date>2015-05-11T15:36:41Z</dc:date>
    </item>
    <item>
      <title>Re: internet explorer 8 Pie chart and Bart Chart</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/internet-explorer-8-pie-chart-and-bart-chart/m-p/114619#M10699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Esri is experimenting with charts too&lt;/P&gt;&lt;P&gt;Examples can be found here: &lt;A href="http://esri.github.io/cedar/examples/" title="http://esri.github.io/cedar/examples/"&gt;Cedar Quickstart | Esri Cedar&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This one in particular might be of interest:&lt;A href="http://esri.github.io/cedar/examples/complex-map-multiple-chart.html" style="line-height: 1.5; color: #337ab7;"&gt;Map and Multiple Charts&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2015 15:56:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/internet-explorer-8-pie-chart-and-bart-chart/m-p/114619#M10699</guid>
      <dc:creator>RickeyFight</dc:creator>
      <dc:date>2015-05-11T15:56:53Z</dc:date>
    </item>
    <item>
      <title>Re: internet explorer 8 Pie chart and Bart Chart</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/internet-explorer-8-pie-chart-and-bart-chart/m-p/114620#M10700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cool, thanks for the share!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2015 16:06:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/internet-explorer-8-pie-chart-and-bart-chart/m-p/114620#M10700</guid>
      <dc:creator>ChrisSmith7</dc:creator>
      <dc:date>2015-05-11T16:06:01Z</dc:date>
    </item>
    <item>
      <title>Re: internet explorer 8 Pie chart and Bart Chart</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/internet-explorer-8-pie-chart-and-bart-chart/m-p/114621#M10701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all&lt;/P&gt;&lt;P&gt;Thank you for your answers. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, there's no way I could convince the company of changing IE8. &lt;/P&gt;&lt;P&gt;Now, Google Earth and High Chart&amp;nbsp; are both very interesting. &lt;/P&gt;&lt;P&gt;All I wanted is to use something that ESRI provides and remain consistent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should be possible. Please look this &lt;A href="http://developers.arcgis.com/javascript/samples/query_dojochart/"&gt;sample&lt;/A&gt;&amp;nbsp; this works in IE 8 and shows that something can be done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rickey : I tried&amp;nbsp; this cool sample and it failed to load in IE 8&amp;nbsp; with error:&lt;/P&gt;&lt;P&gt;Message: Script errors&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt; URI: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://square.github.io/crossfilter/d3.v3.min.js" rel="nofollow" target="_blank"&gt;http://square.github.io/crossfilter/d3.v3.min.js&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt; URI: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://esri.github.io/cedar/js/vega.js" rel="nofollow" target="_blank"&gt;http://esri.github.io/cedar/js/vega.js&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt; URI: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://esri.github.io/cedar/js/cedar-core.js" rel="nofollow" target="_blank"&gt;http://esri.github.io/cedar/js/cedar-core.js&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;&lt;P&gt;Abel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2015 17:06:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/internet-explorer-8-pie-chart-and-bart-chart/m-p/114621#M10701</guid>
      <dc:creator>AbelLudba</dc:creator>
      <dc:date>2015-05-11T17:06:39Z</dc:date>
    </item>
    <item>
      <title>Re: internet explorer 8 Pie chart and Bart Chart</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/internet-explorer-8-pie-chart-and-bart-chart/m-p/114622#M10702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Abel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am sorry I did not read that they were still on IE&lt;STRONG&gt;8&lt;/STRONG&gt;, I assumed that IE10 would be used.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2015 17:20:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/internet-explorer-8-pie-chart-and-bart-chart/m-p/114622#M10702</guid>
      <dc:creator>RickeyFight</dc:creator>
      <dc:date>2015-05-11T17:20:16Z</dc:date>
    </item>
  </channel>
</rss>

