abbottmw
Members-
Content count
46 -
Joined
-
Last visited
-
Days Won
2
About abbottmw
-
Rank
Advanced Member
-
Thank you for your reply.. As long as you are aware of the issue, im cool. Is there a list somewhere that lists bugs/requests that are being fixed/implemented I know there is a forum of the suggestions and Requests here, but didnt know if there was a place that showed which of those were be considered and when. Thanks for all you do! -Matthew
-
If you look at the graphic i sent in the previous post, and look specifically at the green line, and the yellow line. You can see the border that is going around the whole graph going through that line. Hope that makes sense.
-
What about making the lines appear above the top and bottom border lines... kind of hard to explain so i am attaching a graphic.. if a line is 100%, the border around the graph is going through the line from the data. Same thing with 0%. the border of the chart is going through the line. Im using 3.1.1 version of FusionCharts if that is needed.
-
Its not that urgent. I mean i can continue using 3.1.1. It would not take long to change my code to use the Javascript instead of FusionCharts DOM until then. There are some features in 3.2 that I really like, so Ill probably find some work around to use 3.2. Keep us all posted, and Thanks for all the work you do! -Matthew
-
Help Needed With Generated Chart
abbottmw replied to tallgal75's topic in FusionCharts and ColdFusion
What exactly is not showing? Did you get this issue resolved? I see that you are using a Line Chart. -
Im attaching the line2D and also the same data but a Column2D to show its the same data. Edit: i took out the 3rd set of data to just show the two that are equal...
-
Will FusionCharts DOM work with FusionCharts 3.2? I recently upgraded to 3.2 and none of my FusionCharts that use the DOM work anymore. Looks like ill have to change my code to use the new FusionCharts() syntax unless there is another way. Any help is greatly appreciated. -Matthew
-
Hey guys, I did a quick search in the forum for this, but I didnt see anything, so I apologize if there is a post on this. Im doing a simple MS Line 2d graph and the issue im having is some of the data on two datasets are exactly the same, so when you view the chart, it shows 3 items in the legend, but only two lines are visible in the chart. This is because for two of those datasets they just happen to have the same data. Are the lines overlapping? If so, how can i fix this?? Im still using 3.1 Fusion Charts v3 (not the FREE version) <dataset seriesName="A"> <set tooltext='Jan 50%' label="Jan" value="50"/> <set tooltext='Feb 50%' label="Feb" value="50"/> <set tooltext='Mar 50%' label="Mar" value="50"/> <set tooltext='Apr ' label="Apr" /> <set tooltext='May ' label="May" /> <set tooltext='Jun ' label="Jun" /> <set tooltext='Jul ' label="Jul" /> <set tooltext='Aug ' label="Aug" /> <set tooltext='Sep ' label="Sep" /> <set tooltext='Oct ' label="Oct" /> <set tooltext='Nov ' label="Nov" /> <set tooltext='Dec ' label="Dec" /> </dataset> <dataset seriesName="B"> <set tooltext='Jan 50%' label="Jan" value="50"/> <set tooltext='Feb 50%' label="Feb" value="50"/> <set tooltext='Mar 50%' label="Mar" value="50"/> <set tooltext='Apr ' label="Apr" /> <set tooltext='May ' label="May" /> <set tooltext='Jun ' label="Jun" /> <set tooltext='Jul ' label="Jul" /> <set tooltext='Aug ' label="Aug" /> <set tooltext='Sep ' label="Sep" /> <set tooltext='Oct ' label="Oct" /> <set tooltext='Nov ' label="Nov" /> <set tooltext='Dec ' label="Dec" /> </dataset>
-
Just wanted to get an update on the status of the FusionCharts DOM project. I have been playing a lot with the FusionCharts DOM (1.1 Beta) and the JQuery plugin.
-
[idea] Plugin Thoughts (Binding One Chart To Another)
abbottmw replied to abbottmw's topic in FusionCharts v3 jQuery Plugin
Im leaning towards the second option that you suggested for global events with the $(':fusioncharts').... I also do like what you have come up with with the update bindings. What about the real-time charts? If the data hasnt changed, will the update event still fire? -Matthew -
[idea] Plugin Thoughts (Binding One Chart To Another)
abbottmw posted a topic in FusionCharts v3 jQuery Plugin
I was just thinking of something with the Jquery Plugin. Im not sure if this is doable, but I was thinking about maybe a way to bind a chart to another chart, so for example if chart A changes, it will also update the second chart that is bound it. Currently there are events that are fired on the charts and you pass in the DOMId, and have to do a test on if the DOMId is "chartxxx" do something. I just thought it may be possible to enhance the events and maybe bind two charts together...etc. Hope that makes sense. -Matthew -
[resolved] Problem with jQuery HTML-Table Simple Example
abbottmw replied to a topic in FusionCharts v3 jQuery Plugin
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 -
[resolved] Problem with jQuery HTML-Table Simple Example
abbottmw replied to a topic in FusionCharts v3 jQuery Plugin
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 -
[resolved] Problem with jQuery HTML-Table Simple Example
abbottmw replied to a topic in FusionCharts v3 jQuery Plugin
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 -
[resolved] Problem with jQuery HTML-Table Simple Example
abbottmw posted a topic in FusionCharts v3 jQuery Plugin
<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.