Hello Haritha,
First off, thanks for following up.
Below are the test results.
Safari: all works fine
FireFox: all works fine
Chrome: "ABC DEF GHI" renders as "GHI DEF ABC"
IE: "ABC DEF GHI" renders as "DEF GHI ABC"
Please note that the problem happens when I use Arabic with Bar charts. Pie charts render perfectly on all browsers.
Not sure if I'm sharing the right code, please let me know if you need more info.
function renderChart(char_id,file,data, id) {
$('#chart-link-'+current_chart).removeClass('selected');
current_chart = id;
fixScroll();
$('#chart-link-'+id).addClass('selected');
var chart = new FusionCharts("<?php echo _LIVE_SITE; ?>/includes/Charts/"+file, "ChartId", "100%", "250", "0", "0");
chart.setDataURL(data+".php?chart_id="+char_id+"&<?php echo time(); ?>");
chart.render("chartdiv");
clearInterval(intr);
}
renderChart("<?php echo $charts[0]['chart_id']; ?>", "<?php echo $charts[0]['chart_file']; ?>", "<?php echo $charts[0]['chart_type']; ?>", 0);
intr = setInterval(nextChart,10000);
Thank you