MartinN

Is It Possible To Change The Data Of An Html5 Chart?

Recommended Posts

I've got a chart with buttons above it that changes the dataurl of the chart (to show by day/month/year).

 

function updateChart(daterange,chartid){

var strURL = "components/project_overview/data.php?daterange=" + daterange + "&chart=" + chartid;

strURL = strURL + "&currTime=" + getTimeForURL();

strURL = escape(strURL);

var chartObj = getChartFromId("progressChart");

chartObj.setDataURL(strURL);

}

 

This works, but when viewed by an ipad (HTML5 charts) it doesn;t do anything.

 

Is it possible to change html5 charts data?

post-8173-0-84951400-1336054312_thumb.png

Share this post


Link to post
Share on other sites
Guest Bindhu

Hi,

 

Can you please share a sample demo project to test from our end ?

Share this post


Link to post
Share on other sites
Guest Bindhu

Hi,

 

Can you please list them here?

 

Also, please provide us with suitable demo projects to replicate them.

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