IDForums
Members-
Content count
79 -
Joined
-
Last visited
Everything posted by IDForums
-
Hi, As in my first post, I am using this parameter to query DB to display results in JSP page. Here's the flow: HTMl displays a drop down for all the center names. Based on user selection, this center name is passed to JSP page which contains Fusion Chart and also HTML table. This particular center name is the basis for querying DB and displaying results. I cannot avoid this parameter. Please suggest.
-
Hi, There is one parameter from HTML page to this JSP page. How can I handle this? Here are more details: < % String centerName = request.getParameter("centerName"); % > Thanks.
-
Number formatting cannot be applied to Tooltext on my charts. I have customised my tooltext to just display x-axis counts instead of axis names and values. But when I do a roll over, the values appear as for example 51987 instead of 51,987 Same case with SubCaption which also contains some counts.
-
Hi Rajroop, I fixed this using NumberFormat in Java. I deleted the attachments after this project is deployed in production Thanks.
-
Legend in multiple lines to accomodate long labels in the same line?
IDForums replied to IDForums's topic in General usage
I tried an alternate way of increasing font in legend and increasing chartRightMargin so that the label starts in next line. It solved my purpose though it is not the solution. -
no swatches on legend on multi-series stack charts
IDForums replied to matt@cobalt's topic in General usage
Hello, Here is one solution...I tried using < graph> instead of < chart> and added colors to datasetseries. It worked! I am assuming you have used FCF_StackedColumn2D.swf as your chart. Attached is modified version of your xml file. Let me know if this helps. Thanks. test.xml -
Hi, I am using US States map to display sales for each state. I also have some sales going on Internationally. How do I specify a label with text International Sales: value
-
Hi, I am using FusionCharts V3.0.3 and attached are my index.jsp, FusionChartsRenderer.jsp and FusionCharts.js. I did not understand where to include FusionChartsExportObject from? Please reply. index.jsp.doc FusionChartsRenderer.jsp.doc FusionCharts.js.doc
-
Hi, Where do I check for wmode(window mode)?
-
Can fusionchart be printed as past of print page
IDForums replied to IDForums's topic in General usage
I tried printing in both IE and Firefox. The chart size does not seem to shrink to fit in the print page. Do I have to set any property which automatically scales the chart? Sorry for duplicate post. I did not check "Print Charts & additional Information" thread which was posted by another user. -
Hello, My web page contains a line chart, HTML table containing few statistics and calculated values. When I printed my web page, everything except FusionChart are printed leaving blank in the place of my chart. Is it possible to print my chart along with the page? Right click on chart will print chart alone but I want the whole snapshot of the web page. Please suggest. Thanks.
-
Hi, I have a line chart with 5 dataset series. I want to display a label on one of the line. Chart legend displays series names but I still want to display name of the series on one of the line. Please let me know is there is a way to achieve this? Thanks.
-
subCaption='Today& apos ;s' Ignore spaces. I used the same in my chart and it worked!
-
Is it possible to display tooltip always whether or not there is a mouseover?
-
Hi Rajroop, Did you get a chance to look at my XML File? Could you please post a reply soon. I am also looking for number formatting of sub caption value. Thanks.
-
Attached is my XML File. I am retrieving DB Values to display in the custom tooltip. Please let me know if its possible to format these numbers in any other way. Thanks.
-
I think my question is not clear. I have customized my tooltip to just display Y-axis values instead of the standard string of axis names and values. If it is the default tooltip then it works fine with numberformatscale attribute but not with customized tooltip. Please find the attached screenshot.
-
It did not help. I believe that tool text is considered as a String and no formatting is applied. I am also looking to format a number which is displayed in Caption to be formatted. Please find the attachment for my jsp file.
-
I have the same problem. I see that the map gets elongated and a small arrow appears on the map when F5 is pressed especially in IE. I have attached a screen shot of the map. Any help to resolve this issue is highly appreciated. I have to deliver this project next week. Thanks, Mona.
-
Can I resize/sclae FusionCharts based on user's browser to avoid scrollbar?
-
My JSP File contains below string. I need to display "Single Day Historic Peak vs. Today's Volume" as Caption for one of my chart. How do I escape single quote in the word Today's? HistoricPeakXML = ""; Thanks.
-
Hi Rajroop, Thanks for your reply. But could you please explain in detail. I tried searching online but could not gather much info. Please give an example if possible. Thanks.
-
Thanks Vidya. That helped!
-
I am getting this error "FusionCharts cannot be resolved to a type" when I am using the following code in my JSP. script language = "Javascript" src = "Files/FusionCharts.js"> div id="TowHourTest">The chart will appear within this DIV. This text will be replaced by the chart. script type="text/javascript"> var myChart = new FusionCharts("Charts/FI2_RT_Bulb.swf", "TwoHrTst", "200", "200", "0", "0"); myChart.setDataURL("bulb1.xml"); myChart.render("TowHourTest"); /script>
-
FusionCharts cannot be resolved to a type
IDForums replied to IDForums's topic in FusionCharts and JSP
The code which I posted earlier is from index.jsp which is on client side. Please suggest.