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?
chart query embed in html
-
- Posts: 370
- Joined: Sat Apr 28, 2018 3:33 am
- Location: India
- Contact:
Re: chart query embed in html
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');
<div id="ChartID"></div><div>another 3 column table</div>
SCRIPT
AwareApp.runQuery ('MyChartQuery','ChartID');
-
- Posts: 370
- Joined: Sat Apr 28, 2018 3:33 am
- Location: India
- Contact:
Re: chart query embed in html
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.