harini

Members
  • Content count

    7
  • Joined

  • Last visited

About harini

  • Rank
    Forum Newbie
  1. Hi, Sorry. I missed the file in my last post. I've attached a screenshot of the behavior I see. What I want is for the blue line to completely disappear. Thanks, Harini scatterChart_interactiveLegend_drawline.zip
  2. Thanks for the reply. My question concerns how to make the line that is drawn due to drawline disappear. I can make the anchors go away by clicking on the legend, but the line remains. Is that expected behavior? I tired the sample xml you provided in your e-mail and saw the same behavior. See the attached file. I've clicked on the legend for the blue line. As you can see the markers for the blue lines are gone, but the line itself remains. Is there a workaround? Thanks, Harini
  3. Scatter Plot Onclick Functionality

    Just to clarify, I know this can be achieved by clicking on the anchors/markers by using the link option. Is there a way to get the click to work on the line as well? Thanks, Harini
  4. Hi, In my scatter charts, I'm using drawline=1. I'm also setting interactiveLegend to 1. When I click on the legend, only the markers/anchors for the scatter plot are removed. Is there something else I need to do to remove the entire line? Thanks, Harini
  5. Hi, I am using ScatterChart with drawLine=1. I want to be able to click on the individual lines and open a new URL or run some javascript code. Is that possible? Thanks, Harini
  6. Resizing Chart Based On Container Resize

    Thanks for the reply. I think I'm still on 3.0. Can I do the resizing with 3.0 or is it only possible in 3.2? Thanks, Harini
  7. Hi, I'm trying to make my chart resizable on a window (or container) resize. The chart width and height are marked as 100% each. I have confirmed that my container is resizing on page resize. (I've added js code to resize the container on window.resize) But my chart does not resize. I've already looked at this link. I've posted an example at the end of this message. Can you please help? Thanks, Harini ?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[url="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd[/url]"> <html xmlns="[url="http://www.w3.org/1999/xhtml"]http://www.w3.org/1999/xhtml[/url]"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>FusionCharts v3 Documentation</title> <link rel="stylesheet" href="../Contents/Style.css" type="text/css" /> <script language="JavaScript" src="../JSClass/FusionCharts.js"></script> </head> <body> <div style="width:100%;height:100%;"> <div style="width:100%;height:100%;" id="chartdiv" align="center"> FusionCharts. </div> <script type="text/javascript"> var chart = new FusionCharts("../Charts/Area2D.swf", "ChartId", "100%", "100%", "0", "0"); chart.setDataURL("Data/Area2D.xml"); chart.render("chartdiv"); </script> </div> </body> </html>