Arindam
Members-
Content count
730 -
Joined
-
Last visited
Everything posted by Arindam
-
Hi, Could you please follow attachment? ChartDataXML.html.txt
-
Automatic Refresh of chart without refreshing the entire page.
Arindam replied to dlacopo's topic in General usage
Hi, This program is applicable for all FusionCharts. For multiple charts refreshing you have to use JavaScript. Please see the javascript section. Could you please use setDataXML method for that? -
Updatepanel and multiple charts getting refreshed
Arindam replied to Arindam's topic in FusionCharts and ASP.NET
Hi, Could you please try this example? AJAXUpdatePanel.zip -
Hi, Could you please test this? see attachment Please note that there would be problems if you also pass newline characters and whitespaces in the relatime data stream. TESTFC.zip
-
Hi, Could you please use charts attribute plotSpacePercent (1 - 100)? i.e <chart plotSpacePercent='20' >
-
Hi, Could you please use 2D Dual Y Combination Chart? please follow that link. http://www.fusioncharts.com/docs/Contents/ChartSS/Combi2DDY.html
-
Hi, Could you please set your IE browser popup setting?
-
Hi, Could you please kept your XML file out side of ASP.NET folder? App_Data is an ASP.NET folder that why it
-
Automatic Refresh of chart without refreshing the entire page.
Arindam replied to dlacopo's topic in General usage
Hi, Could you please see attachment for example of real time chart with Column3D? RealChartwithColumn3D.zip -
Updatepanel and multiple charts getting refreshed
Arindam replied to Arindam's topic in FusionCharts and ASP.NET
Hi, Could you please provide us source code? you can try with ICallbackEventHandler. -
Hi, Could you please use chart attribute rotateLabels="1" slantLabels="1" ?
-
Hi, Could you please follow this link? http://www.fusioncharts.com/maps/docs/Contents/JS_setDataXML.html
-
Hi, Could you please use vTrendLine?
-
Hi, Could you please use 2D Dual Y Combination Chart? Please see the link. http://www.fusioncharts.com/docs/Contents/ChartSS/Combi2DDY.html
-
Hi, You can use similer connection string. for sqlserver <add name="SQLServer2005Connection" providerName="System.Data.Odbc" connectionString="uid=sa;pwd=pass;server=[server name];database=FactoryDB"/> <add name="TestsqlServer" providerName="System.Data.SqlClient" connectionString="Data Source=.SQLEXPRESS;AttachDbFilename=|DataDirectory|Database.mdf;Integrated Security=True;User Instance=True"/>
-
Hi, Could you please change dataStreamURL link from Angular10.xml? Your code ------------------------------------------- dataStreamURL='login_count2.jsp&value=' Change To --------------------------------- dataStreamURL='login_count2.jsp' or dataStreamURL='login_count2.jsp?value='
-
Hi, Could you please tell us chart swf file name?
-
"Expected ;" JavaScript Error on Some Systems
Arindam replied to itsmmm2002's topic in Javascript Problems
Hi, Your code is working perfectly in our lab. However you could try using registerWithJS setting to off. Please run this from you local server (IIS). And please follow that link and add your local drive in setting manager to allow global security setting for javascript access. Setting off registerWithJS --------------------------------------- var fusionChart = new FusionCharts("tools/FusionCharts_Enterprise/Charts/MSColumn2D.swf", "12345", "100%", "100%", "0", "0", "FFFFFF", "exactFit"); Adobe Global security setting managers link --------------------------------------------------------- http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager02.html -
Can I add a click event inside the stacked area chart
Arindam replied to agnellodcosta's topic in General usage
Hi, I am afraid, click event not preset but you can use link attribute for adding some javascript on it. i.e <set value='100' link='javascript:clickMe();' /> Please add this clickMe() function with in <script> javascript section -
Hi, Could you please see this link? http://www.fusioncharts.com/docs/Contents/ChartMessages.html
-
Hi, Could you please use this function? function getXML(){ var data = [ ['January', 46], ['February', 85], ['March', 67], ['April', 49 ], ['May', 76], ['June', 96], ['July', 62], ['August', 62], ['September', 37], ['October', 49], ['November', 76], ['December', 96] ]; var strXML="<chart chartRightMargin='30' numberSuffix='%25'>"; for(var i=0;i<12;i++){ var color=""; var value=data[1]; switch (true){ case (value>=0 && value<=25): color="color='FF0000'"; break; case (value>=26 && value<=50): color="color='EAE03B'"; break; case (value>=50 && value<=75 ): color="color='E28B55'"; break; case (value>=75 && value<=100): color="color='00FF00'"; break; default: color="color='0000FF'"; break; }; strXML += "<set label='" + data[0] + "' value='" + value + "' " + color + " />"; } strXML +="</chart>"; return(strXML); } Use it this way, please dont forget to add FusionCharts.js <div id="chart1div"> This text is replaced by the Flash movie. </div> <script type="text/javascript"> var chart1 = new FusionCharts("FusionCharts/Bar2D.swf", "ChId1", "400", "300", "0", "0"); chart1.setDataXML(getXML()); chart1.render("chart1div"); </script>
-
Hi, Could you please make sure that you are returning the value with proper signature ? e.g. &value=10 You sould have &value= in the datastream. login_count.jsp must return only &value=<%=dashboard_login_count_result%>
-
Hi, It is possible with JavaScript and Server Side scripting like (asp, php, asp.net).
-
Hi, It is possible. see xml <chart> <set value='100' label='Jan' link='http://fusioncharts.com' /> <set value='150' label='Feb' link='http://google.com' /> </chart>
-
Hi, Could you please add FusionCharts.js file for JS mode (FusionCharts.RenderChart) render? and try again.