RoncalJustin
Members-
Content count
5 -
Joined
-
Last visited
About RoncalJustin
-
Rank
Forum Newbie
-
How about writing the actual chart on the PDF? because i saw an article saying that is not pssible.
- 10 replies
-
- php wrapper
- php
-
(and 2 more)
Tagged with:
-
Yes yes i just need a way to export it automatically without any user promt. will that be possible? or is there a way to write the whole chart in a pdf without exporting it as PNG?
- 10 replies
-
- php wrapper
- php
-
(and 2 more)
Tagged with:
-
i need to automatically attach the png exported by the Fusionchart in a PDF generated by TCPDF
- 10 replies
-
- php wrapper
- php
-
(and 2 more)
Tagged with:
-
I tried using this one base on the sample provided but why is it that when the chart was saved as an image it doesnt contain the chart?
- 10 replies
-
- php wrapper
- php
-
(and 2 more)
Tagged with:
-
How do i include the Fusion Chart on a PDF Report Generated by TCPDF
RoncalJustin posted a topic in FusionCharts and PHP
$pdf->AddPage(); $fusionCharts_HTML=' <? require_once(INCLUDE_DIR.'.'fusioncharts.php'.'); $plots = $report->getPlotData(); $ticket_projects = $report->getTicketProjects(); $project_selected = $report->getProjects(); $pieData = $report->getPieChart($ticket_projects); $jsonEncodedData = json_encode($pieData); $columnChart = new FusionCharts("pie3d", "ncmreportsummary" , 900, 450, "chart-1", "json",$jsonEncodedData); $columnChart->render(); ?> <div class="centered"> <div id="chart-1"><!-- Fusion Charts will render here--></div> </div> <?php'; $html2='<div class="centered">'.$fusionCharts_HTML.' </div>'; // output the HTML content $pdf->writeHTML($html2, true, false, true, false, ''); // reset pointer to the last page $pdf->lastPage();