Haritha

Members
  • Content count

    489
  • Joined

  • Last visited

Everything posted by Haritha

  1. Mouse scroll stops over fusion charts

    Hi, Could you please send us a live URL so that we can test it at our end? We tried testing the ScrollCombiDY2D chart and MSStackedColumn2D chart from our demo gallery and could not find any problem here. Could you too check the following links from our demo gallery and let us know your feedback? http://www.fusioncharts.com/demos/gallery/scroll-charts/chart.asp?id=scrollcombidy2d_1 http://www.fusioncharts.com/demos/gallery/stacked-charts/chart.asp?id=msstackedcolumn2d_1 Awaiting your response.
  2. Very Large Box and Whisker Datasets

    Hi, Welcome to FusionCharts forum The feature of passing pre-calculated values to Box and Whisker chart will be included in our next release. We shall update this thread when our next version releases. Hope this helps.
  3. Hi Kiran, Glad that the workaround provided helped Happy FusionCharting
  4. Crash on ie10

    Hi, We created a sample to test the "Line 2D" chart on IE 10 browser and it seems that the sample works as expected. Please find the sample attached. Could you please run the sample at your end and let us know if your problem persists? Also, please note that the method "setDataXML()" is deprecated. Please use the method "setXMLData()" instead. Line 2D.zip
  5. Mouse scroll stops over fusion charts

    Hi, It is not possible to have mouse scrolling on the page when the control rests with Pie2D chart which is rendered in Flash mode. The Pie chart has mouse listener added to rotate the pie slices along with mouse. When one mouse event is registered in any component no other external mouse event works on that component. A very simple example is an HTML page with page scroller and it contains a TextArea with a scroller. When you scroll that page, it scrolls normally. But when you keep mouse cursor on the TextArea ant try to scroll the page with mouse scroller, the TextArea will be scrolled with mouse. This is the reason why the Pie2D chart is avoiding mouse scrolling on the page. As a suggestion, you may try using JavaScript variant of Pie 2D chart. Hope this helps.
  6. GetXMLData Bug

    Hi, Apologies for delay. It seems that the connectors do not retrieved in the XML when no connectors are present in the chart XML while creating a chart. The new connector added using the connector interactivity gets displayed in the XML when atleast one connector is already present in the chart XML during chart creation. We are looking into this and will get back to you soon. Meanwhile, you may try using one blank connector in the XML during chart creation, in which case the connectors added later also show up when XML is retrieved using "getXMLData()". Please use the below given code as a workaround. Ref: myChart.setXMLData('<chart viewmode="0" is3d="1" isTrendZone="1" yaxismaxvalue="100" yaxisminvalue="0" xaxismaxvalue="100" xaxisminvalue="0" basefontsize="13" showformbtn="0" palette="2" ><categories></categories><dataset seriesname="DS1" id="1"><set id="2" color="AFD8F8" tooltext="A" shape="CIRCLE" radius="50" name="myname" y="74.9794975727011" x="8.297607952780387" /><set x="26.911463187325253" y="69.24942263279446" id="3" datasetid="1" name="myname" tooltext="" color="" alpha="18" labelalign="middle" allowdrag="1" shape="polygon" radius="12" numsides="23"></set></dataset><connectors> <connector /></connectors></chart>'); We shall update this thread as soon as we reach upon something.
  7. Hi, We have already included the capability of aligning the caption in JavaScript charts in the upcoming release. However, this feature is not present in the current version.We shall update this thread as soon as the new version is released. Hope this helps.
  8. Setting bgColor = 000000 gives gray background

    Hi, Please set the attribute "bgAlpha" to 100 and check again. Ref. <chart .. bgAlpha='100' > Hope this helps.
  9. Fusion Chart exporting and saving in one click

    Hi, Apologies for delay. FusionCharts XT is made in Flash 8 (AS2) which does not support byte-streams and file downloads. However, Flash 10 (AS3) does support the same. So, the Export Component has been coded in Flash 10 (AS3) to be able to handle image/PDF building (using byte streams) and to allow download of the same. Hence, it is not possible to perform the operation of exporting and saving in just one button click. But as a workaround to this problem, you may export the chart as soon as it gets rendered and disable the export dialog from showing up. Then you can have flash component to save the chart to appear when the export is ready. By doing this, you will have just one button on your page. But, the limitation of using this method is that the flash component appears with a delay after the chart gets rendered (which can be handled by showing a status message). Hope I am able to clarify myself.
  10. Multiple Font Colors for same label group

    Hi, It is not possible to give different font color to each of the data labels on the chart, as of now. Hope this helps.
  11. Hi, The "align" attribute of the style tag for caption is not supported by JavaScript charts. As a workaround, you may try giving spaces after the caption so that it aligns to the left. But this requires giving multiple spaces after the caption to make it align to left. Ref. <chart .. caption="Sales By Category " > Hope this helps.
  12. bug with brLabel in HeatMap / javascript

    Hi, Please find the answers to your queries below: 1. The "bottom right label" doesn't display in the Heatmap graph, when using javascript (JSON) it works fine with others label (tllabel, trllabel, bllabel). it works fine with flash. >> We tried to use the "tllabel", "trlabel", "bllabel" and "brlabel" attributes and it seems that all the attributes along with bottom right label work fine in Flash as well as JavaScript variant. Please find the attached screenshot and JSON data used. 2. the "xAxislabelDisplay" option doesn't work when using javascript (but works when using flash) >> Can you please let us know how you want to align the data labels so that we can help you better? Awaiting your response. Data.txt
  13. Fusion Chart exporting and saving in one click

    Hi, Welcome to FusionCharts Forum We are looking into your query and will get back to you soon.
  14. getDataWithId() not Working in Demo

    Hi, It seems that you are trying to run the sample in your local machine because of which the charts are not able to communicate with the JavaScript files. To enable communication between charts and JavaScript in your local machine, you need to Setup Flash Player Global Security settings. Please follow the link : http://docs.fusioncharts.com/charts/Tools/FlashPlayerSecuritySetup/HowToSetup.html Alternatively, you may also run the sample on server in which case you will not get this error. Hope this solves your problem.
  15. X Axis Labels as Links using JSON

    Hi, As already said, the current version of FusionCharts v3.3.1 SR2 does not allow you to define links on x-axis labels.This is irrespective of whether you are using XML or JSON data format, which means that the workaround that you are talking about does not work anymore using XML as well. I have still translated the XML data that you are talking about in the forum link that you have referred above, to JSON format and attached here. This will work only if you are using very old version of FusionCharts. Hope this helps. Data.zip
  16. GetXMLData Bug

    Hi, We are looking into your query and will get back to you soon.
  17. Add The Logourl In Funnel.swf

    Hi, Welcome to FusionCharts Forum. We tried to render a Funnel chart with the "logoURL" attribute, and it seems that the image present in the URL gets displayed on the chart as expected. Please find the attached sample along with a screenshot. Hope this helps. logoURL - Funnel.zip
  18. Hi, The feature of re-drawing and re-scaling the chart when the legend of the chart is clicked is not present as of now. But as a workaround, you may use the "LegendItemClicked" event and change the XML/JSON being used to create the chart. When the Legend is clicked again, you can change the XML/JSON back to the previous one. By doing this, you can achieve the required functionality. Please find a sample attached which uses the above specified method. Hope this helps. Rescale on click of Legend.zip
  19. Hi, Spark Line chart does not provide the feature of tool tip. But, if you want tool tip on your chart, you may make use of Annotations. Annotations let you create your own custom objects (shapes, images, text etc.) in the charts. You can create various shapes like polygons, rectangles, circles, arcs, etc., render annotation text at required positions and load external GIF/JPEG/PNG images in the chart itself. For your requirement, you can make use of circle type of annotation and show tool tip on annotations. Please find the attached XML along with a screenshot to demonstrate the use of Annotations. For more information on Annotations, you may refer : http://docs.fusioncharts.com/widgets/Contents/Annotations/Introduction.html Hope this helps. Data_1.xml
  20. Hi, We are looking into your query and will update you soon on this thread.
  21. Hi, Glad that you could resolve your problem. Happy FusionCharting
  22. Hi, Welcome to FusionCharts Forum. Can you please send us a screenshot of your requirement along with XML/JSON data being used so that we can help you better?
  23. X Axis Labels as Links using JSON

    Hi, Apologies for delay. The support for HTML tags like font/anchor tags defined within labels/trendline/ vline labels was not feature supported but was a workaround provided which used to work with previous versions of FusionCharts. Due to some security constraints, the support has been dropped and thus, doesnot work with the current version anymore. Hence, you will not be able to specify x-axis label as a link. But you can have links specified on data plots (eg. column,bar etc) that link to another page like you intend to achieve. Eg. { "label" : "week1", "value" : "196","link" : "www.google.com" } As specified above, link can be provided to the data plot instead of x-axis label. Hope this helps.
  24. Click event of 2D pie chart

    Hi Sabin, Apologies for the previous communication. Yes, it is possible to use the "link" attribute to call a JavaScript function while using AngularJS. The JavaScript function can be written in the view page while the link attribute can be specified in the JSON data. Hope this helps.
  25. Click invalid using fusionMaps

    Hi, The problem of incorrect characters in the alert can be resolved by using the attribute "unescapeLinks" and setting it to 0. Internally the chart decodes a URL that you set as link. Before invoking the link it again encodes the URL. If you are passing multilingual characters via a URL ,you do not want this decode-encode mechanism to be handled by chart. In such case, you can use this attribute and set it to 0. Eg. <chart .. unescapeLinks='0' > Hope this helps.