abbottmw Report post Posted March 23, 2010 <center> <table id="myHTMLTable" border="1" align="center"> <tr> <th>2005</th> <th>2006</th> <th>2007</th> <th>2008</th> </tr> <tr> <td>12</td> <td>23</td> <td>34</td> <td>45</td> </tr> </table> <script type="text/javascript"> $('#myHTMLTable').convertToFusionCharts({ swfPath: "../Charts/", type: "Column2D", data: "#myHTMLTable", dataFormat:"HTMLTable" }); </script> </center> when i run this code, it produces a 2d column chart, but it produces 4 bars, but the horizontal labels are showing 2006, 2007, 2008. It seems to somehow remove 2005 from the horizontal labels. Im attaching a image of the chart. Im using v3 charting. Share this post Link to post Share on other sites
Guest Basundhara Ghosal Report post Posted March 23, 2010 Hi, Could you please send us the XML codes that you are using, as an attachment? Awaiting your reply. Share this post Link to post Share on other sites
abbottmw Report post Posted March 24, 2010 All the code im using is in this html file. Attaching it as a .txt file When i look in firebug on firefox, i get the following xml looking at the source. <chart ><set label='2005' value='12' /><set label='2006' value='23' /><set label='2007' value='34' /><set label='2008' value='45' /></chart> jquery.txt Share this post Link to post Share on other sites
Guest Basundhara Ghosal Report post Posted March 25, 2010 Hi, Thanks for reporting the issue. We have replicate the issue as a bug of FusionCharts for jquery. Presently, our developers are looking into the issue. We will definitely get back to you as soon as it gets fixed. Share this post Link to post Share on other sites
Guest Rajroop Report post Posted March 31, 2010 Dear abbottmw, This is to notify you that jQuery Plugin for FusionCharts has been updated to 1.0.0b2 (beta-2) with: * Bug fix in HTMLTable data-handler extension where the first Label was ignored in Internet Explorer * Optimized algorithm for property validation * Miscellaneous non-API changes You can get your hands on it at http://www.fusioncharts.com/jquery Hope this helps. Share this post Link to post Share on other sites
abbottmw Report post Posted March 31, 2010 Thank you for the continued work on this. Also thank you for keeping me posted on updates! Ill be doing more testing this week using the plugin. -Matthew Share this post Link to post Share on other sites
Guest Rajroop Report post Posted March 31, 2010 Hey Matthew, You are always welcome! I hope you have fun testing jQuery Plugin for FusionCharts Free. :hehe: Please free to discuss issues, offer suggestions and bug reports concerning the jQuery Plugin for FusionCharts Free. Share this post Link to post Share on other sites
Austin Report post Posted April 8, 2010 This may be a silly question .. but is the v3 jquery .js file different? Share this post Link to post Share on other sites
abbottmw Report post Posted April 8, 2010 (edited) Austin, By default, the jquery defaults to FusionCharts Free, so when Im doing my testing Ive had to set the product to v3. Same js file. -Matthew Edited April 8, 2010 by Guest Share this post Link to post Share on other sites
shamasis Report post Posted April 21, 2010 Just for reference, you can provide the following piece of code just below your jquery.fusioncharts.js script inclusion, to make the FusionChartsFree JS file work with v3 <script type= Share this post Link to post Share on other sites