-
Content count
2,385 -
Joined
-
Last visited
-
Days Won
11
Everything posted by Pallav
-
Error on Links in pop-up windows in IE6 and IE7 when using FusionMaps
Pallav replied to Pallav's topic in Bug Reports
Hi, Could you just try running it from a server, instead of local file system? At times, IE + Flash security settings prevent JS from running on local file system. -
Hi Tom, Is there a live link which you could share to help us debug this?
-
Chart Legend Error When IE7 is Zoomed to a Different %
Pallav replied to Smokey's topic in FusionCharts and ASP
Hi, The zoom function is not natively supported by FusionCharts - it's a feature of Flash Player, which directly scales the movie, instead of programatically zooming it. As such, this behavior is browser dependent and can cause some mismatches. -
Toggle or Highlight Specific Lines in Multi-Line Chart
Pallav replied to bdk0172's topic in General usage
Hi, In FusionGadgets line chart (www.fusioncharts.com/gadgets), we've an interactive legend component, which can show/hide a particular dataset as chosen by user. -
Hi, Would you like the documentation in Spanish, or the product to support Spanish language?
-
Remove alternate row color and border in SSGrid.swf
Pallav replied to Pallav's topic in FusionCharts and ASP.NET
Hi, The parameters for the grid are passed using FlashVars and not in XML, as explained at http://www.fusioncharts.com/docs/Contents/Grid_Usage.html -
I can't visualize database number in toolTip.
Pallav replied to Epig160545's topic in FusionCharts and JSP
Hi, On which chart SWF do you want it? And do you want the % or not? -
Hi, I'm not sure if I've understood self links. Can you please elaborate?
-
Displaying top scroll area in the middle of the chart
Pallav replied to oferbar's topic in General usage
You can just set yAxisMaxValue to such a value that the chart always has space on the top. -
Hi, Thanks for your suggestions. We'll definitely consider these for our future releases.
-
They work only in FusionGadgets chart - not FusionCharts, as of now.
-
If you download the FusionCharts v3 evaluation, it's in the code folder.
-
Hi, It's atleast 8-10 months away.
-
Hi, Just do this (only if you've the .fla files): - Open the .fla file. - Change the chart size to your intended size (in the tool bar) - Recompile
-
Hi, The objects are initially draw centered to the given position. As such, it draws at 0,0 center.
-
So do you actually want to display 2 records or just 1?
-
We have a combination of area with line with dual series and axis - but not spline.
-
Hi, This option is present in the real time stacked column chart from FusionGadgets suite (www.fusioncharts.com/gadgets) where you can fix the distance between the canvas margins.
-
Yes - you could just set [chart scrollToEnd='1' ..]
-
Hi, Please make sure that: 1. You're using FusionCharts JavaScript class to embed the charts. 2. You're not specifying the chart width and height in %, but in pixels (and without appending px at the end of numeric values).
-
Gantt chart not displaying correctly (white space at end)
Pallav replied to Pallav's topic in Bug Reports
Steve, Since the Gantt chart works on actual date/time values, you cannot skip months in between. The only option would be to provide empty labels for them - which could indicate that you do not want them to be interpreted on the chart. -
>>> This is great! Nice work. Is there a way to call that "save to image" function from javascript? I'm afraid you cannot do this as of now.
-
Hi, Thanks for your suggestion. We had prototyped with LZW compression too. However, since Flash 8 doesn't support byte data type natively, we had to send bytes as chr(byte's decimal value) characters, which tend to be UTF-8 characters after the initial ASCII 256 characters. Now, at server side, this was getting platform specific, as PHP and ASP.NET didn't convert it back to the original format. As such, we had to resort to RLE encoding, which does provide a lot of compression (from 2MB of data to 300KB), is more processor efficient than LZW (at least in case of Flash), but the compression factor is higher. In Flash 9, this can be easily done, as ByteArray is supported and GZip compression is natively supported. As such, we expect to provide a better way to do this in FusionCharts v4.
-
Hi, Thanks for your suggestion. We had prototyped with LZW compression too. However, since Flash 8 doesn't support byte data type natively, we had to send bytes as chr(byte's decimal value) characters, which tend to be UTF-8 characters after the initial ASCII 256 characters. Now, at server side, this was getting platform specific, as PHP and ASP.NET didn't convert it back to the original format. As such, we had to resort to RLE encoding, which does provide a lot of compression (from 2MB of data to 300KB), is more processor efficient than LZW (at least in case of Flash), but the compression factor is higher. In Flash 9, this can be easily done, as ByteArray is supported and GZip compression is natively supported. As such, we expect to provide a better way to do this in FusionCharts v4.
-
how can i format for numbers like if value is 244,000 then i want 2,44,000
Pallav replied to nirav's topic in General usage
Nirav, I'm afraid you cannot do this formatting without changing the source code.