swiftinitpvtltd I have a chart query which I want to display along side another table next to it. <div>AwareApp.runQuery ('MyChartQuery, 'main');</div><div>another 3 column table</div> How do I show chart side by side to table in html report?
idpSteve Try this (NOT sure it will work but worth a try..) <div id="ChartID"></div><div>another 3 column table</div> SCRIPT AwareApp.runQuery ('MyChartQuery','ChartID');
swiftinitpvtltd Thank you! I think I tried this over the weekend but it did not work in html report(may be it works within normal aware form content html). So for now I heavily customized it using kendo scripts with custom charts.