mlibner

Members
  • Content count

    6
  • Joined

  • Last visited

About mlibner

  • Rank
    Forum Newbie
  1. The beta link shows a chart resizing but not in an HTML table container. Is that being addressed as well? Thanks, Mark
  2. 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
  3. 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.
  4. This text is replaced by the chart This text is replaced by the chart
  5. 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!