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?