[visualization-api] Bug interactive charts google in IE 8

48 views
Skip to first unread message

Rodrigo

unread,
Apr 29, 2010, 4:39:47 PM4/29/10
to Google Visualization API
Bug interactive charts google in IE 8?
to open the chart type Pie Chart Interactive was an error when
clicking on the subtitles and other features of the chart.
Has anyone seen this error? has a solution?

as an example to access this link with IE 8,
http://code.google.com/intl/pt-BR/apis/visualization/documentation/gallery/piechart.html

thanks!
Rodrigo


Bug charts interactive do google no IE 8 ?
ao abrir o chart do tipo Pie Chart interativo ocorreu um erro ao
clicar nas legendas e demais funcionalidades do chart.
Alguém já viu esse erro? tem solução?

como exemplo acessem esse link com o IE 8 ,
http://code.google.com/intl/pt-BR/apis/visualization/documentation/gallery/piechart.html

obrigado!
Rodrigo

--
You received this message because you are subscribed to the Google Groups "Google Visualization API" group.
To post to this group, send email to google-visua...@googlegroups.com.
To unsubscribe from this group, send email to google-visualizati...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-visualization-api?hl=en.

ChartMan

unread,
May 2, 2010, 3:07:10 AM5/2/10
to google-visua...@googlegroups.com
Thanks for reporting.
I am missing some details of how to reproduce the error (as it does not show when I try it).
If you can try to add some more details and the exact error you were seeing (add screenshots if possible) it will be great.

In any case I noted this error and we will be looking into it.

ChartMan

Sreenath

unread,
May 3, 2010, 12:37:35 AM5/3/10
to google-visua...@googlegroups.com
Hi,
      I have attached the screen shot along with this mail.


 Code is added below ..  its in included  jsp page.


<script type="text/javascript" src="/page/js/x_CP.js"></script>
<script language="VBScript" type="text/vbscript" src="/page/js/flashVersionVB.js"></script>
<script language="JavaScript1.1" type="text/javascript" src="/page/js/flashMovie.js"></script>
<script language="text/javascript" type="text/javascript" src="/page/js/ObjTree.js"></script>
<script language="text/javascript" type="text/javascript" src="/page/js/xml2json.js"></script>
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script language="JavaScript" type="text/javascript">
   google.load('visualization', '1', {packages:['columnchart']});
   google.load('visualization', '1', {packages:['piechart']});
--
If you judge people, you have no time to love them.
ScreenshotPIE_IN_IE.JPG
ScreenshotPIE_IN_FF.JPG

ChartMan

unread,
May 3, 2010, 3:03:53 AM5/3/10
to google-visua...@googlegroups.com
Is this related to other post you sent to the group.

Rodrigo

unread,
May 4, 2010, 3:57:10 PM5/4/10
to Google Visualization API
Hi,
To reproduce the error just copy the code below to save an html file,
in chrome and firefox is already running in IE 8 when you first open
the browser will see a static image of the graph, when the page is
loaded a second time generates an error:
Line: 496
Error: Failed

code:

<html>
<head>
<script type="text/javascript" src="http://www.google.com/jsapi"></
script>
<script type="text/javascript">
google.load("visualization", "1", {packages:["piechart"]});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = new google.visualization.DataTable();
data.addColumn('string', 'Task');
data.addColumn('number', 'Hours per Day');
data.addRows(5);
data.setValue(0, 0, 'Work');
data.setValue(0, 1, 11);
data.setValue(1, 0, 'Eat');
data.setValue(1, 1, 2);
data.setValue(2, 0, 'Commute');
data.setValue(2, 1, 2);
data.setValue(3, 0, 'Watch TV');
data.setValue(3, 1, 2);
data.setValue(4, 0, 'Sleep');
data.setValue(4, 1, 7);

var chart = new
google.visualization.PieChart(document.getElementById('chart_div'));
chart.draw(data, {width: 400, height: 240, is3D: true, title:
'My Daily Activities'});
}
</script>
</head>
<body>
<div id="chart_div"></div>
</body>
</html>

Thanks,

Rodrigo

On 2 maio, 04:07, ChartMan <chart...@google.com> wrote:
> Thanks for reporting.
> I am missing some details of how to reproduce the error (as it does not show
> when I try it).
> If you can try to add some more details and the exact error you were seeing
> (add screenshots if possible) it will be great.
>
> In any case I noted this error and we will be looking into it.
>
> ChartMan
>
>
>
> On Thu, Apr 29, 2010 at 11:39 PM, Rodrigo <rodrigozamo...@gmail.com> wrote:
> > Bug interactive charts google in IE 8?
> > to open the chart type Pie Chart Interactive was an error when
> > clicking on the subtitles and other features of the chart.
> >  Has anyone seen this error? has a solution?
>
> > as an example to access this link with IE 8,
>
> >http://code.google.com/intl/pt-BR/apis/visualization/documentation/ga...
>
> > thanks!
> > Rodrigo
>
> > Bug charts interactive do google no IE 8 ?
> > ao abrir o chart do tipo Pie Chart interativo ocorreu um erro ao
> > clicar nas legendas e demais funcionalidades do chart.
> >  Alguém já viu esse erro? tem solução?
>
> > como exemplo acessem esse link com o IE 8 ,
>
> >http://code.google.com/intl/pt-BR/apis/visualization/documentation/ga...
>
> > obrigado!
> > Rodrigo
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Google Visualization API" group.
> > To post to this group, send email to
> > google-visua...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > google-visualizati...@googlegroups.com<google-visualization-api%2Bunsu...@googlegroups.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/google-visualization-api?hl=en.
>
> --
> You received this message because you are subscribed to the Google Groups "Google Visualization API" group.
> To post to this group, send email to google-visua...@googlegroups.com.
> To unsubscribe from this group, send email to google-visualizati...@googlegroups.com.
> For more options, visit this group athttp://groups.google.com/group/google-visualization-api?hl=en.

Viz Kid

unread,
May 5, 2010, 6:10:49 AM5/5/10
to google-visua...@googlegroups.com

Hi Rodridgo.

I have tried opening the html you wrote here in IE8 and there seems to be no problem. Even after refreshing several time, closing the tab and opening a new tab and then refreshing, the problem did not occur.

Does this happened to you on more than one machine? Is this problem consistent (do you sometimes manage to refresh several times and it does work)?

Best,
  Viz Kid

Nikhil Agrawal

unread,
Jul 27, 2012, 7:58:40 AM7/27/12
to google-visua...@googlegroups.com
Hey have u fixed this ? If yes, pls post your solution here.


On Friday, April 30, 2010 2:09:47 AM UTC+5:30, Rodrigo wrote:
Bug interactive charts google in IE 8?
to open the chart type Pie Chart Interactive was an error when
clicking on the subtitles and other features of the chart.
 Has anyone seen this error? has a solution?

as an example to access this link with IE 8,
http://code.google.com/intl/pt-BR/apis/visualization/documentation/gallery/piechart.html

thanks!
Rodrigo


Bug charts interactive do google no IE 8 ?
ao abrir o chart do tipo Pie Chart interativo ocorreu um erro ao
clicar nas legendas e demais funcionalidades do chart.
 Alguém já viu esse erro? tem solução?

como exemplo acessem esse link com o IE 8 ,
http://code.google.com/intl/pt-BR/apis/visualization/documentation/gallery/piechart.html

obrigado!
Rodrigo

--
You received this message because you are subscribed to the Google Groups "Google Visualization API" group.
To post to this group, send email to google-visualization-api@googlegroups.com.
To unsubscribe from this group, send email to google-visualization-api+unsub...@googlegroups.com.
Reply all
Reply to author
Forward
0 new messages