Swarnam

Administrators
  • Content count

    1,122
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by Swarnam

  1. Cannot see charts on mobile devices.. :(

    Hi Atit, Please confirm if you have used jQuery v1.8 or later along with the older version of FusionCharts. If yes, prior to FusionCharts XT v3.2.2 – SR4 had few compatibility issues while using jQuery v1.8. The issue has been resolved in the latest version. Please try downloading the latest version FusionCharts Suite XT (v3.3.1 – SR3) at: http://www.fusioncharts.com/download/. Hope this helps.
  2. Hide Line

    Hey, Please refer to : http://forum.fusioncharts.com/topic/15629-enable-disable-line-through-legend/
  3. Hey, To disable the legend while rendering the chart, try setting "visible" attribute as o in the respective dataset element. Note: This works only for JavaScript charts.
  4. Hey, Sincere apologies for the delayed update. The issue has been fixed. Please find the attached screenshot. To receive the latest version, please download the Evaluation version at: http://www.fusioncharts.com/download/trials/
  5. Auto toggle in Donut chart

    Hey, Welcome to FusionCharts Forum. Yes, it is possible to auto toggle the pie slices through togglePieSlice() API. Please find the sample attached to meet your requirement. Hope this helps. Pie2D_toggle.zip
  6. Hey, Apologies for the delayed response. Can you please try specifying the chart dimension in percentage for the chart rendered within hidden container?
  7. Add line feed to tooltips

    Hey, Try setting "isHTML" as 1 to "ToolTip" object and check if line feed works fine with "tooltipSepchar" attribute. "chart": { "tooltipsepchar": "<br>" }, ....................................... "styles": { "definition": [ { "name": "style_1", "type": "font", "ishtml": "1" } ], "application": [ { "toobject": "TOOLTIP", "styles": "style_1" } ] ... }
  8. Fusion Maps with Javascript

    Hey, JavaScript map are rendered by default when "type" property is used instead of "swfUrl" $(document).ready(function(){ $("#mapContainer").insertFusionCharts({ type: "PapuaNewGuinea", dataSource: "png_map.xml", dataFormat: "xmlurl", width: "750", height: "400", id: "myMapId" }); Hope this helps.
  9. Hey Sumit, To display trendline value within legend, you can create a individual dataset named as Target and pass the same values as Trendline(for the first/last element). Now, "Target" will appear within the legend. Please find the screenshot attached.
  10. Fusioncharts on Blackberry

    Hi, Blackberry OS v6+ is supported to render FusionCharts. Please check out our demo Gallery samples at http://www.fusioncharts.com/demos/ using Blackberry device. To get started off creating the first chart, please refer to http://docs.fusioncharts.com/charts/contents/FirstChart/UsingPureJS.html
  11. JS Render Bug X-Axis

    Hey, In JavaScript mode, the values being displayed along X axis is the startValue of vTrendLines.The startValue is not being displayed in Flash and it has been identified as a bug and internally fixed. To hide the values appearing in X axis, please try setting "displayValue" attribute of vTrendLines as follows. Ref.Code: "vTrendLines": [ { "line": [ { "alpha": 80, "startValue": 0, "color": "FF0000", "endValue": 0.25, "displayValue": " " }, { "alpha": 80, "startValue": 0.25, "color": "FFA500", "endValue": 0.5, "displayValue": " " }, { "alpha": 80, "startValue": 0.5, "color": "FFFF00", "endValue": 0.75, "displayValue": " " }, { "alpha": 80, "startValue": 0.75, "color": "008000", "endValue": 1, "displayValue": " " } ] } ]
  12. Fusion chart does not load chart items

    Hi Gaurav, Can you let us know if you are explicitly loading any other jQuery file? Since you are using an older version, we would suggest you to upgrade to the latest version. Link:http://www.fusioncharts.com/download/trials/
  13. Gantt Chart Task Label Alignment

    Hey, FusionCharts XT v3.3.1-SR3 is a service release and not a major release. We have included the feature in the latest service release, so it can help you out little earlier to the major release. In major release, you can expect more events, better performance, more intuitive API and a lot more coming on the way.
  14. Hey, Apologies for the delay. Unable to find the image. Can you please try attaching again?
  15. ScrollColumn2D max items

    Hey, "color" attribute accepts hex color codes without #. Can you try the below format and let us know if your issue has been resolved? <set value="0.21" link="S-A1;_warning" toolText="Name: A1 PM status: Warning" color="FFFF00"/>
  16. Execute event on DRAG a NODE

    Hey, 1º -> in my drag node chart, sometimes, when i draging a node, appears an window with details of this node. I don't know how to make this window not show in my chart. Exists an method to set to make not show this window? >>Can you try setting "viewMode" attribute to 1? 2º -> in my drag node charts, many nodes appears "blurred" (blurry). This problem ocurred in the Internet Explorer, Google Chrome and Firefox. How i can fix this? >>Can you share the XML along with screenshot?
  17. US States/Counties

    Hi, No, it is not possible to create county boundaries for State Maps using the core FusionMaps XT. However, your requirement can be fulfilled through a custom map. If you require further details, please drop a mail to "[email protected]"
  18. Hi Hari, Yes, "stack100Percent" attribute is supported only for Stacked charts.
  19. Hi Hari, It works for Pie charts. Please find the attached screenshot. Can you please confirm the version of FusionCharts used at your end?
  20. Drill down chart not working.

    Hi, As mentioned in the earlier thread, can you please try rendering the chart from any local server?
  21. Hey, "Invalid data" message occurs when there are duplicate attributes or extra quotes (") mentioned in the XML of the chart. Although, the Flash chart ignores duplicate attributes, the JavaScript chart does a strict XML validation. In your XML, "decimalPrecision" attribute has been defined twice. Hope this helps.