﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>FusionCharts Forum / FusionCharts v3 / Using FusionCharts / FusionCharts and ASP  / Plotting a MSSeries chart from an Access Database / Latest Posts</title><generator>InstantForum.NET v4.1.4</generator><description>FusionCharts Forum</description><link>http://www.fusioncharts.com/forum/</link><webMaster>support@fusioncharts.com</webMaster><lastBuildDate>Mon, 13 Oct 2008 16:05:10 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: Plotting a MSSeries chart from an Access Database</title><link>http://www.fusioncharts.com/forum/Topic6246-30-1.aspx</link><description>We do have a lot of examples for MS chart in our doc (Code folder) and the even more complex examples in our blueprint applications (open source; in multiple programming languages).</description><pubDate>Fri, 23 May 2008 05:14:46 GMT</pubDate><dc:creator>Pallav</dc:creator></item><item><title>RE: Plotting a MSSeries chart from an Access Database</title><link>http://www.fusioncharts.com/forum/Topic6246-30-1.aspx</link><description>Yes I now the the goal is to combine the sources in the sytnax of the JS. However any type of coding I tried would just end with summing totals into the chart and not plot any type of MS series.&lt;/P&gt;&lt;P&gt;Can you give an example of what the code needs to look like to render correctly?&lt;/P&gt;&lt;P&gt;Considiering the use of Multiple Series types of charts. I was very surprised there is not a working example/sample of an MS series chart when pulling from an external data source.</description><pubDate>Mon, 19 May 2008 09:08:09 GMT</pubDate><dc:creator>tstreeter</dc:creator></item><item><title>RE: Plotting a MSSeries chart from an Access Database</title><link>http://www.fusioncharts.com/forum/Topic6246-30-1.aspx</link><description>You can use any sources and combine them in your ASP script - FusionCharts just needs a single XML data stream.</description><pubDate>Sun, 18 May 2008 10:01:46 GMT</pubDate><dc:creator>Pallav</dc:creator></item><item><title>Plotting a MSSeries chart from an Access Database</title><link>http://www.fusioncharts.com/forum/Topic6246-30-1.aspx</link><description>Trying to render a MSSeries chart through using DataXML method. Data is stored within a Access database. I have the tables already defined in my database and can pull them using a column2d or column3d.&lt;P&gt;What is the correct syntax / coding within the JS to pull the data from the different tables and render correctly? I tried working from the examples in the documentation but had no success.&lt;/P&gt;&lt;P&gt;Here is the code that I'm working from:&lt;/P&gt;&lt;P&gt;strXML = "&amp;lt;chart caption='Inventory of Activities - Previous Day' showBorder='0' formatNumberScale='0' labelDisplay='ROTATE' slantLabels='1' useRoundEdges='1'&amp;gt;"&lt;BR&gt; &lt;BR&gt; 'Iterate through each factory&lt;BR&gt; strQuery = "select * from Actv_Master"&lt;BR&gt; Set oRs = oConn.Execute(strQuery)&lt;BR&gt; &lt;BR&gt; While Not oRs.Eof&lt;BR&gt;  'Now create second recordset to get details for this factory&lt;BR&gt;  Set oRs2 = Server.CreateObject("ADODB.Recordset")&lt;BR&gt;  strQuery = "select sum(Quantity) as TotOutput from Actv_HFD_Current where queueID=" &amp;amp; ors("queueID")&lt;BR&gt;  Set oRs2 = oConn.Execute(strQuery)    &lt;BR&gt;  'Generate &amp;lt;set label='..' value='..' /&amp;gt;  &lt;BR&gt;  strXML = strXML &amp;amp; "&amp;lt;set label='" &amp;amp; ors("QueueName") &amp;amp; "' value='" &amp;amp; ors2("TotOutput") &amp;amp; "' /&amp;gt;"&lt;BR&gt;  'Close recordset&lt;BR&gt;  Set oRs2 = Nothing&lt;BR&gt;  oRs.MoveNext&lt;BR&gt; Wend&lt;BR&gt; 'Finally, close &amp;lt;chart&amp;gt; element&lt;BR&gt; strXML = strXML &amp;amp; "&amp;lt;/chart&amp;gt;"&lt;BR&gt; Set oRs = nothing&lt;BR&gt; &lt;BR&gt;&lt;BR&gt; Call renderChart("../../FusionCharts/mscolumn3d.swf", "", strXML, "Chart_1", 900, 275, false, false)&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&lt;BR&gt;</description><pubDate>Tue, 13 May 2008 11:18:59 GMT</pubDate><dc:creator>tstreeter</dc:creator></item></channel></rss>