Pergunta

O meu problema não é capaz de tornar o gráfico no arquivo .tpl. O código seguinte é o exemplo retirado de verificação documento gráfico Fusão para referência

<?php
   include("../Includes/FusionCharts.php");

   //Create an XML data document in a string variable
   $strXML  = "";
   $strXML .= "<graph caption='Monthly Unit Sales' xAxisName='Month' yAxisName='Units'
   decimalPrecision='0' formatNumberScale='0'>";
   $strXML .= "<set name='Jan' value='462' color='AFD8F8' />";
   $strXML .= "<set name='Feb' value='857' color='F6BD0F' />";
   $strXML .= "<set name='Mar' value='671' color='8BBA00' />";
   $strXML .= "<set name='Apr' value='494' color='FF8E46' />";
   $strXML .= "<set name='May' value='761' color='008E8E' />";
   $strXML .= "<set name='Jun' value='960' color='D64646' />";
   $strXML .= "<set name='Jul' value='629' color='8E468E' />";
   $strXML .= "<set name='Aug' value='622' color='588526' />";
   $strXML .= "<set name='Sep' value='376' color='B3AA00' />";
   $strXML .= "<set name='Oct' value='494' color='008ED6' />";
   $strXML .= "<set name='Nov' value='761' color='9D080D' />";
   $strXML .= "<set name='Dec' value='960' color='A186BE' />";
   $strXML .= "</graph>";

   //Create the chart - Column 3D Chart with data from strXML variable using dataXML method
   echo renderChartHTML("../../FusionCharts/FCF_Column3D.swf", "", $strXML, "myNext", 600, 300);
?>


Ele funciona se eu rende em .php normal, mas como passar o valor renderChartHTML ao Smarty tpl para que ele vai ficar exibidos em uma <div>{$chartdata}</div> assim .Pretende ser ótimo se algum exemplo para exibir gráfico Fusão em smarty tpl.

A partir de agora eu sou capaz de obter o gráfico como atribuir o $ strXML a variável smarty e passando os valores diretamente aos parâmetros incorporar. Qualquer pessoa sugerir uma maneira melhor de fazer isso?

Em PHP:

$smarty->assign('strXML', $strXML);

Em .tpl:

<embed src="FCF_MSLine.swf" flashVars="&dataXML={$strXML}&chartWidth=900&chartHeight=600" quality="high" width="900" height="600" name="testgraph" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
Foi útil?

Solução

$output = renderChartHTML("../../FusionCharts/FCF_Column3D.swf", "", $strXML, "myNext", 600, 300);
$smarty->assign('chartdata', $output);
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top