-
Content count
2,385 -
Joined
-
Last visited
-
Days Won
11
Everything posted by Pallav
-
You can do this: 1. Use 2 single-series or 1 multi-series chart to show the data. 2. Use our grid component to show the legend.
-
>>>1. If I want to graph/chart data from a LAMP configuration, plotting timestamp data, can I achieve this with FusionCharts; specifically, the Free version? FusionCharts doesn't currently have a time axis. However, if your time/dates are equi-distant, you can use any of the charts to plot the same. >>> 2. If I am unable to plot data directly from the MySQL database or if you advise against this, what is the ideal solution to graph data from a MySQL Database? You'll need to hook FusionCharts to PHP pages to retrieve data from MySQL and then plot the same.
-
Probably you might be trying to hard code how many items to show in the grid. If you're manually over-riding the same, the text can be cut.
-
OK no javascript works with this chart software
Pallav replied to Pallav's topic in Javascript Problems
Hi, Please see http://www.fusioncharts.com/Docs > Guide for Web Developers > Creating Drill Down Charts. We've ready code samples in the evaluation download too. -
Hi, I'm afraid that cannot be directly done. You'll need to modify the source code of chart to invoke another event before showing the error.
-
You need to set <chart SyAxisMaxValue='95'..> That sets the y-max for secondary axis.
-
What you can do is create a category list indicating the union of all data - like foo, bar, etc1, etc2. Now, in alpha dataset, provide <set value='xx' /> for those categories which have data and <set /> for those which do not have. Do the same in beta too.
-
We've a feature which allows you to map your names with ours. Please see http://www.fusioncharts.com/PMDocs/Contents/CustomID.html
-
Hi, I'm afraid we've not yet integrated FusionCharts with Domino in-house. However, a few developers have successfully tried it. You may read one at http://www.ferdychristant.com/blog/articles/DOMM-6NDQEJ
-
Yes - our charts in Instrumentation Suite support this. Please see www.fusioncharts.com/IS/Gallery.asp > Data streaming charts.
-
Set <chart showYAxisValues='0' ..>
-
I'm afraid we do not yet have a parameter to fix that space, as that space depends on a lot of other elements in chart. Fixing it would need to over-ride the best-fit calculations.
-
FusionCharts v3 Pie chart automatically enables the smart lines, when the labels/values are overlapping.
-
Hi, If FusionCharts finds all data as 0, it automatically adjusts all axes to 0-100, to avoid deforming the chart. One option would be to use a value of say 0.0001 instead of 0.
-
FusionCharts is a set of Flash movies, and as kind of plugins, are rendered in a special way by the browsers (a method known as "windowed"), making them the topmost objects in a page. To allow DHTML objects appear over a Flash movie just add this parameter: WMode=Transparent to the Flash <object> tag. It should look like this: <param name="WMode" value="Transparent"> In order to support Mozilla-based browsers and other browsers, such as Safari, you should also include the wmode parameter in the <embed> tag, like this: <embed wmode="transparent" .......></embed> If you're using the FusionCharts JavaScript class to embed your charts, you may download the updated JavaScript class from http://www.fusioncharts.com/Downloads/FusionChartsWMode.zip
-
You might want to show the data on a logarithmic scale in that case. See log charts in our PowerCharts suite.
-
It's not about the browser/Flash Player combination. It has more to do with the block character being present on the user's machine.
-
Retrieving point data from a 2D line chart into Flash's main timeline
Pallav replied to mr_interweb's topic in General usage
All the elements in charts are nested in multiple nested movie clips like _level0 > Chart1 > CMC etc. -
Please make sure you're using dataURL method.
-
FusionCharts renders the value 12 too. However, since the value is so small, it's rendered as a very small column.
-
Updating PowerMaps data without refreshing page
Pallav replied to bfrick22's topic in Using FusionMaps XT
I'm afraid you cannot ask the map to do so. However, you can update the map's data at client side using JavaScript. -
To show v1, v2 etc on y-axis, you need to define trend lines and label them as v1,v2 etc. >> Also I do not know how to join up the 4 values in the 1st data series. Do you have any advice on how I can do this? Set <dataset drawLine='1' ..>
-
This cannot be directly done using any of the default charts. However, you can tweak the XML of scatter chart to do so. In our scatter chart, you can opt to plot lines between points. Also, both the x and y axis are numeric. So, create 2 datasets - first, containing the points which you want to connect with line and second simple points. For the mean line, use the trend line feature.
-
Retrieving point data from a 2D line chart into Flash's main timeline
Pallav replied to mr_interweb's topic in General usage
Hi, By editing it or getting the info back in your code, what exactly do you want to attain? If you can share your end goal, maybe we can help you with some other known methods. -
Chart Background and Canvas Errors When Larger Than 4000 px High
Pallav replied to tomwdavis's topic in Bug Reports
FusionCharts, being a Flash movie, can have a maximum width of 4000 pixels only.
