I have an onHeader event that is to basically display a chart (not SC chart)
The code is a function that call an SC app that calculates and displays a chart. I would like the chart to be a popup modal of only the chart.
Can anyone help with this?
onHeader: <script>
function dispChart(par1, par2){
window.open(’…/DualChart/DualChart.php?AthleteKey=’ + par1 + ‘&EvtCode=’ + par2)
}
</script>
DualChart: <div id=“chart-1”><!-- Fusion Chart will render here–></div>