suan.ngaihte

Members
  • Content count

    6
  • Joined

  • Last visited

About suan.ngaihte

  • Rank
    Forum Newbie
  1. Hi, But we put all the SWF files, FusionCharts.js and FusionChart.cs in one same folder called "FusionCharts" only and we are using this path only from that constant variable. The "FusionCharts" folder is directly under the root directory. And in our Default.aspx page we link the JavaScript file as follows --For XHTML 1.0 &lt script language="javascript" src="FusionCharts/FusionCharts.js" type="text/javascript" > &lt/script&gt --For HTML 4.0 &lt script language="javascript" src="../FusionCharts/FusionCharts.js" type="text/javascript" > &lt/script&gt Do you think this is the problem?
  2. Hi All, There is a very strange or rather say funny things which we found out recently. It is something like this. We have been using chart in various pages for displaying some statistics. On the .cs file where we write the code to render the chart we have a constant string variable which hold the path (URL) of the chart. It is like this const string fusionChartsPath = "../FusionCharts/"; if we assign a value as above chart gets displayed on page load, but when a postback occurs, say by button click, then the chart gets disappeared. Again when we change the constant varaible as follow const string fusionChartsPath = "FusionCharts/"; the chart does not get displayed on first load, but when a postback occurs, say by button click, then the chart gets displayed. What could be the problem here guys?? Thanks
  3. Hi, I am using WindowsXP and VS-2008 for developing a web application. I am using Fusion Chart on a page. As far as I know all the code has been running correctly for long time, but suddenly due to some unknown reason fusion chart stops being displayed on the machine where we deployed (It is a Windows Server 2008). We could not trace the problem because the chart is displaying correctly on our development machine, but when we publish and deploy our application the chart does not get displayed, it displays only a blank space (something like a place holder) on the page instead of the chart. Please help us to resolve if you have ever come across this type of problem. Nothing has been changed from when it was getting displayed correctly.
  4. Map Sizing

    Dear Pallav, I also face the same sizing problem. Please see the code for generating and rendering the map and please help me if there is any solution. Code To Render: public static string RenderChart(string chartSWF, string strURL, string strXML, string chartId, string chartWidth, string chartHeight, bool debugMode, bool registerWithJS) { strXML = strXML.Replace("&", "and"); StringBuilder builder = new StringBuilder(); builder.AppendFormat("&lt!-- START Script Block for Chart {0} --&gt" + Environment.NewLine, chartId); builder.AppendFormat("&ltdiv id='{0}Div' align='left'&gt" + Environment.NewLine, chartId ); builder.Append("Chart." + Environment.NewLine); builder.Append("&lt/div&gt" + Environment.NewLine); builder.Append("&ltscript type="text/javascript"&gt" + Environment.NewLine); builder.AppendFormat("var chart_{0} = new FusionCharts("{1}", "{0}", "{2}", "{3}", "{4}", "{5}");" + Environment.NewLine, chartId, chartSWF, chartWidth, chartHeight, boolToNum(debugMode), boolToNum(registerWithJS)); if (strXML.Length == 0) { builder.AppendFormat("chart_{0}.setDataURL("{1}");" + Environment.NewLine, chartId, strURL); } else { builder.AppendFormat("chart_{0}.setDataXML("{1}");" + Environment.NewLine, chartId, strXML); } builder.AppendFormat("chart_{0}.render("{1}Div");" + Environment.NewLine, chartId, chartId); builder.Append("&lt/script&gt" + Environment.NewLine); builder.AppendFormat("&lt!-- END Script Block for Chart {0} --&gt" + Environment.NewLine, chartId); return builder.ToString(); } ---------------------------------------------------------------------------------------------------- Code to Create the XML Data: public string DisplayChartBasicWithClubs(string powerMapType, DataTable iTable, string parameterColumn) { //*** Create an XML data document in a string variable StringBuilder xmlData = new StringBuilder(); xmlData.Append("&ltmap fillcolor='99CCFF' showToolTip='0' animation='0' showShadow='0' showBevel='0' showLegend='0' showLabels='0' showMarkerLabels='1' " + " borderColor='000000' baseFont='Verdana' baseFontSize='10' " + " markerBorderColor='000000' markerBgColor='FF5904' markerRadius='3' legendPosition='bottom' useHoverColor='0' showMarkerToolTip='1' &gt"); xmlData.Append("&ltmarkers&gt"); xmlData.Append("&ltdefinition&gt"); foreach(DataRow myRow in iTable.Rows) { xmlData.Append("&ltmarker id='" + myRow["ID"].ToString() + "' x='" + myRow["X"].ToString() + "' y='" + myRow["Y"].ToString() + "' label='" + myRow["Name"].ToString() + "' color='00ff00' labelPos='"+ GetTextAlignment(myRow["TextAlignId"].ToString()) +"' /&gt"); } xmlData.Append("&lt/definition&gt"); xmlData.Append("&ltapplication&gt"); foreach(DataRow myRow in iTable.Rows) { xmlData.Append("&ltmarker id='" + myRow["ID"].ToString() + "' shapeId='circle' link='" + HttpUtility.UrlEncode(new Link().ClubInformationLink(myRow[parameterColumn].ToString())) + "' /&gt"); } xmlData.Append("&lt/application&gt"); xmlData.Append("&lt/markers&gt"); xmlData.Append("&lt/map&gt"); //*** loopthrought datatable rows /*foreach(DataRow dr in iTable.Rows) { //*** append xml string to add a label, value and colour for each row xmlData.Append("&ltset label='" + dr[0].ToString() + "' value='" + dr[1].ToString() + "' " + colours[1].ToString() + " /&gt"); }*/ //*** close chart tag //xmlData.Append("&lt/chart&gt"); return RenderChart(powerMapsPath + "FCMap_" + powerMapType + ".swf", "", xmlData.ToString(), graphName, graphWidth, graphHeight, graphDebug, false); } ---------------------------------------------------------------------------------------------------------------- Code which calls for creating the map: private void ViewCountry(int[] compIDs, string countryID) { DataSet iSet = new DataSet(); DbHelper.FillFromSql(iSet, string.Format(@"Select Name From Country Where PowerMapID = '{0}'", countryID)); DataTable iTable; if (compIDs.Length == 0) { iTable = new PowerMap().GetClubPositioningByCountry(countryID); } else { iTable = new PowerMap().GetClubsForCompetition(compIDs[0].ToString(), countryID); for (int i = 1; i < compIDs.Length; i++) { DataTable tmpTable = new PowerMap().GetClubsForCompetition(compIDs.ToString(), countryID); foreach(DataRow dr in tmpTable.Rows) { iTable.Rows.Add(dr.ItemArray); } } } foreach(DataRow myRow in iTable.Rows) { myRow[iTable.Columns.Count-1] = "clubid=" + myRow["ID"].ToString(); } powerMapsChart.Text = new PowerMap().DisplayChartBasicWithClubs(iSet.Tables[0].Rows[0][0].ToString(), iTable, "ParameterColumn"); iSet.Dispose(); } Please find the attachment and kindly help me. Thanks
  5. Map size increase after post back

    If you could show me an example on how to do, it will be a great help for me. I really do not know how to actually implement at this point. And moreover, this script is generated during runtime from the code-behind. Thanks
  6. Map size increase after post back

    Dear All, I am new to this control and have no much idea on how it works, and implemented on asp.net. The map we used increases the size and display became incorrect (means some part of the map gets cut off) when a page post back occurs. Please find the images below: Image Before Postback occurs (when loaded for first time) Image after Postback occurs: Following is the xml code generated during runtime: Fist time (Before postback) <!-- START Script Block for Chart myTable --> <div id='myTableDiv' align='left'> Chart. </div> <script type="text/javascript"> var chart_myTable = new FusionCharts("../PowerMaps/FCMap_France.swf", "myTable", "650", "550", "0", "0"); chart_myTable.setDataXML("<map fillcolor='99CCFF' showToolTip='0' animation='0' showShadow='0' showBevel='0' showLegend='0' showLabels='0' showMarkerLabels='1' borderColor='000000' baseFont='Verdana' baseFontSize='10' markerBorderColor='000000' markerBgColor='FF5904' markerRadius='3' legendPosition='bottom' useHoverColor='0' showMarkerToolTip='1' ><markers><definition><marker id='369' x='565' y='530' label='Ajaccio' color='00ff00' labelPos='Top' /><marker id='370' x='387' y='211' label='Auxerre' color='00ff00' labelPos='Top' /><marker id='371' x='225' y='391' label='Bordeaux' color='00ff00' labelPos='Bottom' /><marker id='372' x='272' y='197' label='Le Mans' color='00ff00' labelPos='Left' /><marker id='373' x='356' y='51' label='Lens' color='00ff00' labelPos='Left' /><marker id='374' x='370' y='39' label='Lille' color='00ff00' labelPos='Top' /><marker id='375' x='449' y='308' label='Lyon' color='00ff00' labelPos='Bottom' /><marker id='376' x='447' y='466' label='Marseille' color='00ff00' labelPos='Right' /><marker id='377' x='486' y='140' label='Metz' color='00ff00' labelPos='Top' /><marker id='378' x='529' y='437' label='Monaco' color='00ff00' labelPos='Right' /><marker id='379' x='486' y='152' label='Nancy' color='00ff00' labelPos='Bottom' /><marker id='380' x='189' y='247' label='Nantes' color='00ff00' labelPos='Top' /><marker id='381' x='526' y='433' label='Nice' color='00ff00' labelPos='Top' /><marker id='382' x='353' y='143' label='Paris Saint-Germain' color='00ff00' labelPos='Bottom' /><marker id='383' x='519' y='444' label='Rennes' color='00ff00' labelPos='Left' /><marker id='384' x='182' y='188' label='Saint-Etienne' color='00ff00' labelPos='Top' /><marker id='385' x='503' y='220' label='Sochaux' color='00ff00' labelPos='Bottom' /><marker id='386' x='542' y='152' label='Strasbourg' color='00ff00' labelPos='Top' /><marker id='387' x='308' y='450' label='Toulouse' color='00ff00' labelPos='Top' /><marker id='388' x='414' y='184' label='Troyes' color='00ff00' labelPos='Top' /><marker id='389' x='330' y='95' label='Amiens' color='00ff00' labelPos='Right' /><marker id='390' x='590' y='485' label='Bastia' color='00ff00' labelPos='Right' /><marker id='391' x='68' y='167' label='Brest' color='00ff00' labelPos='Right' /><marker id='392' x='250' y='125' label='Caen' color='00ff00' labelPos='Right' /><marker id='393' x='315' y='273' label='Chateauroux' color='00ff00' labelPos='Top' /><marker id='394' x='375' y='308' label='Clermont' color='00ff00' labelPos='Top' /><marker id='396' x='445' y='240' label='Dijon' color='00ff00' labelPos='Left' /><marker id='397' x='465' y='350' label='Grenoble' color='00ff00' labelPos='Top' /><marker id='398' x='399' y='277' label='Gueugnon' color='00ff00' labelPos='Right' /><marker id='399' x='120' y='156' label='Guingamp' color='00ff00' labelPos='Top' /><marker id='402' x='270' y='110' label='Le Havre' color='00ff00' labelPos='Right' /><marker id='403' x='104' y='207' label='Lorient' color='00ff00' labelPos='Top' /><marker id='404' x='400' y='450' label='Montpellier' color='00ff00' labelPos='Top' /><marker id='405' x='420' y='130' label='Reims' color='00ff00' labelPos='Bottom' /><marker id='406' x='431' y='100' label='Sedan' color='00ff00' labelPos='Top' /><marker id='408' x='392' y='54' label='Valenciennes' color='00ff00' labelPos='Right' /><marker id='1072' x='225' y='305' label='Niort' color='00ff00' labelPos='Right' /><marker id='1074' x='235' y='380' label='Libourne' color='00ff00' labelPos='Right' /><marker id='1180' x='235' y='220' label='Angers' color='00ff00' labelPos='Right' /><marker id='1181' x='315' y='38' label='Boulogne-sur-Mer' color='00ff00' labelPos='Left' /></definition><application><marker id='369' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d369' /><marker id='370' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d370' /><marker id='371' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d371' /><marker id='372' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d372' /><marker id='373' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d373' /><marker id='374' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d374' /><marker id='375' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d375' /><marker id='376' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d376' /><marker id='377' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d377' /><marker id='378' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d378' /><marker id='379' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d379' /><marker id='380' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d380' /><marker id='381' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d381' /><marker id='382' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d382' /><marker id='383' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d383' /><marker id='384' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d384' /><marker id='385' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d385' /><marker id='386' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d386' /><marker id='387' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d387' /><marker id='388' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d388' /><marker id='389' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d389' /><marker id='390' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d390' /><marker id='391' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d391' /><marker id='392' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d392' /><marker id='393' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d393' /><marker id='394' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d394' /><marker id='396' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d396' /><marker id='397' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d397' /><marker id='398' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d398' /><marker id='399' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d399' /><marker id='402' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d402' /><marker id='403' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d403' /><marker id='404' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d404' /><marker id='405' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d405' /><marker id='406' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d406' /><marker id='408' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d408' /><marker id='1072' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d1072' /><marker id='1074' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d1074' /><marker id='1180' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d1180' /><marker id='1181' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d1181' /></application></markers></map>"); chart_myTable.render("myTableDiv"); </script> <!-- END Script Block for Chart myTable --> Second time (After postback) <!-- START Script Block for Chart myTable --> <div id='myTableDiv' align='left'> Chart. </div> <script type="text/javascript"> var chart_myTable = new FusionCharts("../PowerMaps/FCMap_France.swf", "myTable", "650", "550", "0", "0"); chart_myTable.setDataXML("<map fillcolor='99CCFF' showToolTip='0' animation='0' showShadow='0' showBevel='0' showLegend='0' showLabels='0' showMarkerLabels='1' borderColor='000000' baseFont='Verdana' baseFontSize='10' markerBorderColor='000000' markerBgColor='FF5904' markerRadius='3' legendPosition='bottom' useHoverColor='0' showMarkerToolTip='1' ><markers><definition><marker id='369' x='565' y='530' label='Ajaccio' color='00ff00' labelPos='Top' /><marker id='370' x='387' y='211' label='Auxerre' color='00ff00' labelPos='Top' /><marker id='371' x='225' y='391' label='Bordeaux' color='00ff00' labelPos='Bottom' /><marker id='372' x='272' y='197' label='Le Mans' color='00ff00' labelPos='Left' /><marker id='373' x='356' y='51' label='Lens' color='00ff00' labelPos='Left' /><marker id='374' x='370' y='39' label='Lille' color='00ff00' labelPos='Top' /><marker id='375' x='449' y='308' label='Lyon' color='00ff00' labelPos='Bottom' /><marker id='376' x='447' y='466' label='Marseille' color='00ff00' labelPos='Right' /><marker id='377' x='486' y='140' label='Metz' color='00ff00' labelPos='Top' /><marker id='378' x='529' y='437' label='Monaco' color='00ff00' labelPos='Right' /><marker id='379' x='486' y='152' label='Nancy' color='00ff00' labelPos='Bottom' /><marker id='380' x='189' y='247' label='Nantes' color='00ff00' labelPos='Top' /><marker id='381' x='526' y='433' label='Nice' color='00ff00' labelPos='Top' /><marker id='382' x='353' y='143' label='Paris Saint-Germain' color='00ff00' labelPos='Bottom' /><marker id='383' x='519' y='444' label='Rennes' color='00ff00' labelPos='Left' /><marker id='384' x='182' y='188' label='Saint-Etienne' color='00ff00' labelPos='Top' /><marker id='385' x='503' y='220' label='Sochaux' color='00ff00' labelPos='Bottom' /><marker id='386' x='542' y='152' label='Strasbourg' color='00ff00' labelPos='Top' /><marker id='387' x='308' y='450' label='Toulouse' color='00ff00' labelPos='Top' /><marker id='388' x='414' y='184' label='Troyes' color='00ff00' labelPos='Top' /><marker id='389' x='330' y='95' label='Amiens' color='00ff00' labelPos='Right' /><marker id='390' x='590' y='485' label='Bastia' color='00ff00' labelPos='Right' /><marker id='391' x='68' y='167' label='Brest' color='00ff00' labelPos='Right' /><marker id='392' x='250' y='125' label='Caen' color='00ff00' labelPos='Right' /><marker id='393' x='315' y='273' label='Chateauroux' color='00ff00' labelPos='Top' /><marker id='394' x='375' y='308' label='Clermont' color='00ff00' labelPos='Top' /><marker id='396' x='445' y='240' label='Dijon' color='00ff00' labelPos='Left' /><marker id='397' x='465' y='350' label='Grenoble' color='00ff00' labelPos='Top' /><marker id='398' x='399' y='277' label='Gueugnon' color='00ff00' labelPos='Right' /><marker id='399' x='120' y='156' label='Guingamp' color='00ff00' labelPos='Top' /><marker id='402' x='270' y='110' label='Le Havre' color='00ff00' labelPos='Right' /><marker id='403' x='104' y='207' label='Lorient' color='00ff00' labelPos='Top' /><marker id='404' x='400' y='450' label='Montpellier' color='00ff00' labelPos='Top' /><marker id='405' x='420' y='130' label='Reims' color='00ff00' labelPos='Bottom' /><marker id='406' x='431' y='100' label='Sedan' color='00ff00' labelPos='Top' /><marker id='408' x='392' y='54' label='Valenciennes' color='00ff00' labelPos='Right' /><marker id='1072' x='225' y='305' label='Niort' color='00ff00' labelPos='Right' /><marker id='1074' x='235' y='380' label='Libourne' color='00ff00' labelPos='Right' /><marker id='1180' x='235' y='220' label='Angers' color='00ff00' labelPos='Right' /><marker id='1181' x='315' y='38' label='Boulogne-sur-Mer' color='00ff00' labelPos='Left' /></definition><application><marker id='369' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d369' /><marker id='370' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d370' /><marker id='371' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d371' /><marker id='372' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d372' /><marker id='373' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d373' /><marker id='374' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d374' /><marker id='375' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d375' /><marker id='376' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d376' /><marker id='377' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d377' /><marker id='378' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d378' /><marker id='379' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d379' /><marker id='380' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d380' /><marker id='381' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d381' /><marker id='382' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d382' /><marker id='383' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d383' /><marker id='384' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d384' /><marker id='385' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d385' /><marker id='386' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d386' /><marker id='387' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d387' /><marker id='388' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d388' /><marker id='389' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d389' /><marker id='390' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d390' /><marker id='391' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d391' /><marker id='392' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d392' /><marker id='393' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d393' /><marker id='394' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d394' /><marker id='396' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d396' /><marker id='397' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d397' /><marker id='398' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d398' /><marker id='399' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d399' /><marker id='402' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d402' /><marker id='403' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d403' /><marker id='404' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d404' /><marker id='405' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d405' /><marker id='406' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d406' /><marker id='408' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d408' /><marker id='1072' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d1072' /><marker id='1074' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d1074' /><marker id='1180' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d1180' /><marker id='1181' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d1181' /></application></markers></map>"); chart_myTable.render("myTableDiv"); </script> <!-- END Script Block for Chart myTable --> Thanks and need you help..