Arindam

Members
  • Content count

    730
  • Joined

  • Last visited

Everything posted by Arindam

  1. mscolum3d, xml in html

    Hi, Could you please follow attachment? ChartDataXML.html.txt
  2. 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?
  3. Hi, Could you please try this example? AJAXUpdatePanel.zip
  4. 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
  5. Increasing width of x-axis values

    Hi, Could you please use charts attribute plotSpacePercent (1 - 100)? i.e <chart plotSpacePercent='20' >
  6. How to add a secondary y-axis?

    Hi, Could you please use 2D Dual Y Combination Chart? please follow that link. http://www.fusioncharts.com/docs/Contents/ChartSS/Combi2DDY.html
  7. Drill down maps in Windows Vista

    Hi, Could you please set your IE browser popup setting?
  8. setdataurl path

    Hi, Could you please kept your XML file out side of ASP.NET folder? App_Data is an ASP.NET folder that why it
  9. Hi, Could you please see attachment for example of real time chart with Column3D? RealChartwithColumn3D.zip
  10. Hi, Could you please provide us source code? you can try with ICallbackEventHandler.
  11. Displaying X-Axis Values Vertically

    Hi, Could you please use chart attribute rotateLabels="1" slantLabels="1" ?
  12. embedding xml directly into html

    Hi, Could you please follow this link? http://www.fusioncharts.com/maps/docs/Contents/JS_setDataXML.html
  13. trendLines & categories

    Hi, Could you please use vTrendLine?
  14. Regarding Chart

    Hi, Could you please use 2D Dual Y Combination Chart? Please see the link. http://www.fusioncharts.com/docs/Contents/ChartSS/Combi2DDY.html
  15. Connection Strings

    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"/>
  16. 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='
  17. Canvas background color

    Hi, Could you please tell us chart swf file name?
  18. 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
  19. Can I add a click event inside the stacked area chart

    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
  20. customize "Retrieving Data. Please Wait."

    Hi, Could you please see this link? http://www.fusioncharts.com/docs/Contents/ChartMessages.html
  21. Column Color

    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>
  22. 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%>
  23. Column Color

    Hi, It is possible with JavaScript and Server Side scripting like (asp, php, asp.net).
  24. 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>
  25. Display issue with IE 7 v/s FF

    Hi, Could you please add FusionCharts.js file for JS mode (FusionCharts.RenderChart) render? and try again.