kpalania
Members-
Content count
15 -
Joined
-
Last visited
About kpalania
-
Rank
Junior Member
-
ok, found it. It is MSColumn2D.swf. Is there some place in the documentation that has a mapping of the supported charts for multi-series XML content?
-
ok, I guess I need to use a specific type of chart to support this XML data. The example didn't specify which ones support multi-series data so it was not clear. I tried using StackedColumn2D.swf. It works, but I don't see it rendered the same way as the example. To be specific, the second series renders "on top" of the first one while I want them to render side by side, just as shown in the example.
-
<chart> <categories> <category label="May" /> <category label="June" /> </categories> <dataset SeriesName="May"> <set value="10" /> <set value="30" /> </dataset> <dataset SeriesName="June"> <set value="23" /> <set value="34" /> </dataset> </chart> What's wrong with this XML? This was created by the XML Generator utility but however, the chart does not render with this data (using setURL api). I am using a bar graph (Bar2D.swf), by the way. The Multi-Series Chart XML example doesn't work for me either. Same "no data to display" error.
-
ok, thanks. let me look at that.
-
ok, i'll try to get that. meanwhile, i've also seen it disappear when it is rendered in the context of a (JBoss) portlet and the portlet is either minimized or maximized. Any thoughts?
-
thanks, and where is the help for all these various options? could you point me to the documentation please? we've purchased fusion charts but i dont see (or atleast, couldnt find) all of this information in the help pages that are part of the install.
-
I've seen cases where the chart suddenly disappears and comes back after a while. Anyone seen anything like this? The only thing is we have the chart rendered in a portlet, everything else is the same.
-
oh really.. thanks.
-
Hi, If I use the default tooltip in a pie chart, it shows the percentages but I need to use a specific text. So, I use the "tooltext" property but when I do that, the percentage value is ofcourse gone. How can I append the percentage value to my custom text?
-
Hi, I am rendering a Pie chart (using Pie2D.swf) and I am facing an issue. Say, I have 3 sections in my chart but the text for each of them is a bit long. This is what I am noticing - the chart shrinks in size to accomodate the text/tooltip. What can I do to keep the chart to its maximum size? I'm calling the FusionCharts API passing 300 as the width and height.
-
Moving from JFreeChart to Fusion Charts. Migration?
kpalania replied to kpalania's topic in General usage
Thanks Pallav. Going to try this now, and will see how goes.. -
Hi, If I wanted to move a JFreeChart to a Fusion chart, how would I go about doing that? I've just downloaded Fusion Chart for evaluation and need to try this out. We have a J2EE application with a jsp frontend. From my quick skimming of Fusion charts, I believe I need to return the data to be rendered in the chart as XML, and that's pretty much all the integration that is needed. Is that correct? In other words, I wouldn't really be using any Fusion chart public (java) APIs or anything of that nature but would simply return all the data in the expected XML format, specify the type of chart, and boom, I am done. Right? Thanks.