mlibner
Members-
Content count
6 -
Joined
-
Last visited
Everything posted by mlibner
-
This text is replaced by the chart This text is replaced by the chart
-
What do the last 4 arguments for instantiation a fusionchart mean?
mlibner posted a topic in General usage
I've looked in the online docs and can't locate this info. I understand the usage for the first four arguments but not the last four. In the code snippet below what does "0", "0", "FFFFFF", "exactFit" stand for and what other values are valid for these arguments? var sf1 = new FusionCharts("../FusionCharts/Column3D.swf", "sfId1", "300", "100", "0", "0", "FFFFFF", "exactFit"); Thanks, Mark -
What do the last 4 arguments for instantiation a fusionchart mean?
mlibner replied to mlibner's topic in General usage
Thank You! -
Chart not showing in HTML table when size set to 100%
mlibner replied to mlibner's topic in General usage
The beta link shows a chart resizing but not in an HTML table container. Is that being addressed as well? Thanks, Mark -
Chart not showing in HTML table when size set to 100%
mlibner replied to mlibner's topic in General usage
I'm not sure I understand what you mean. If I provide a fixed pixel value doesn't that prevent the chart from resizing when the window size changes? Changing this line... var chart1 = new FusionCharts("../FusionCharts/Column2D.swf", "ChId1", "100%", "100%", "0", "0", "FFFFFF", "exactFit"); To this... var chart1 = new FusionCharts("../FusionCharts/Column2D.swf", "ChId1", "100", "100", "0", "0", "FFFFFF", "exactFit"); Makes the chart show up in the table but does not make it resizable. -
I've got the entire gauge as a hotspot using the clickURL attribute and would like to show a tooltip that appears when the user rest the mouse over the gauge to let them know they can click on it to drill down. Currently the tooltip only shows up when the mouse rest over the dial. I am new to FusionWidgets so please forgive my ignorance. Thank You!