ijingshan / gwt-charts

Automatically exported from code.google.com/p/gwt-charts
0 stars 0 forks source link

Annotated Chart Flash and SVG Plug in Issue on Internet Explorer #37

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
I have created annotated chart, but i want to generate chart based on plug in 
requirement, it means chrome and ff comes with flash player plugin but for IE 
you have to install manually or some times its detect automatic for the Update.

Now my concern is if flash plug in is not available or not install neither 
updated. graph should be generate and detect flash or svg plug in is available, 
if both are not available graph result would be img ..

i used if condition to detect Browser plugin

if ($.browser.msie){
  if ($.browser.flash = false) 
   console.log("You Dont have flash installed");
   drawVisualizationannotated(jsonData);        // With SVG
}else{
   console.log("You have flash installed");
   drawVisualizationWithFlash(jsonData);    // With Flash
}

I am facing this issues on IE only 

Please suggest 

Original issue reported on code.google.com by suhashan...@gmail.com on 19 Apr 2013 at 11:18

GoogleCodeExporter commented 9 years ago
Annotated Chart Flash has been replaced by SVG Annotation Charts.
See https://developers.google.com/chart/interactive/docs/gallery/annotationchart
It's being implemented in issue #51

Original comment by rglafo...@gmail.com on 27 Aug 2014 at 2:39