I am trying to use a linked chart using pop up window in fusion chart but i can't seem to figure out to modify my code based on some examples i saw online using the linked chart using pop up window. My code currently opens a new page but i rather use a pop up window. Here is the example i saw online but not able to translate this and modify my code:
<set label="2004" value= "37800" link="P-nameOfWindow, resizable=no-showChildChart.asp"/>
and here is my code which opens a new page:
while (reader.Read())
{
// Construct the chart data in XML format
xmlStr.AppendFormat("<set label='{0}' value='{1}' link='{2}'/>", reader["cat_name"].ToString(), reader["Total"].ToString(), Server.UrlEncode("DrillDown1.aspx?AppName=" + reader["cat_name"].ToString()));
}