I am using the Sencha Touch framework with the FusionCharts evaluation version.
The javascript bar chart renders fine, but I am unable to click a bar in the bar chart. The links work fine in Chrome, but not on the ipad.
I am using the FusionCharts XT Evaluation version 3.2.2 SR3
This is how I create my chart:
var salesChart = new FusionCharts("Column3D", "sChart", "100%", "100%", "0", "1");
Ext.Ajax.request(
{
url: 'Services/Wireless.asmx/GetSalesChart',
method: 'POST',
headers: { 'Content-type': 'application/json;charset=utf-8;' },
success: function (xml)
{
salesChart.setXMLData(xml.responseText);
salesChart.render('SalesChartDiv');
}
});
I set up an attribute for link="JavaScript:alert('test');" in the <set> element. On the ipad when I press on a bar it shows the tooltip for the bar but doesn't fire the click event. Is this because I am using the evaluation version or is there another property that I need to set?
The xml looks like this:
<chart caption="some title" xAxisName="Stage" yAxisName="Revenue">
<set label="a" value="50" link="JavaScript:alert('test');" />
</chart>