Sign in to follow this  
FCXTUser

Ipad Access Via Junos Pulse Ssl Vpn Gateway

Recommended Posts

I am using the HTML below to test the display of fusioncharts on the Ipad via a SSL VPN gateway to a corporate intranet site. I am able to view the chart on my PC. However, on the IPAD I get a blank screen.

 

Are there any solution to this?

 

Thank you

 

 

 

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title id="page-title">Brokerage</title>

<link rel="stylesheet" type="text/css" href="/ext-4/resources/css/ext-all.css">

<script type="text/javascript" src="//ke32/FusionChartsXT/FusionCharts.js"></script>

</head>

<body>

 

<div id='ChtMthTrend'></div>

<script>

FusionCharts.setCurrentRenderer('javascript');

var StackColumnChart = new FusionCharts("../FusionChartsXT/Column3D.swf", "ChtMthTrendDiv", 400, 300, "0", "0");

StackColumnChart.setXMLUrl("data/Mthly.xml");

StackColumnChart.render("ChtMthTrend");

</script>

</body>

</html>

 

 

 

 

Share this post


Link to post
Share on other sites
Guest Angshu

Hi,

 

We are looking into this and would get back to you at our earliest.

 

Thank you very much for your continued patience and patronage.

Share this post


Link to post
Share on other sites
Guest Sashibhusan

Hi,

 

With regard to your issue, iPAD does not support Flash Charts.

 

So to render the charts in JavaScript mode (or communicate with the JavaScript), you should pass the 'registerWithJS' parameter as '1' while creating FusionCharts JavaScript object.

 

Ref. Code:

var StackColumnChart = new FusionCharts("../FusionChartsXT/Column3D.swf", "ChtMthTrendDiv", 400, 300, "0", "1");

 

Hope this helps!

Share this post


Link to post
Share on other sites
Guest Sashibhusan

Also, please make sure that you have included the below mentioned JavaScript files in your application where you have FusionCharts.js file (in your case: "//ke32/FusionChartsXT/FusionCharts.js").

 

1. FusionCharts.js

2. FusionCharts.HC.js

3. FusionCharts.HC.Charts.js

4. jquery.min.js

 

Since FusionCharts.js will load the rest other files automatically on-demand, you must have the four files together in one place.

 

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this