Vishalika

Members
  • Content count

    301
  • Joined

  • Last visited

Everything posted by Vishalika

  1. DragLine chart : Labels overlapping issue

    Hi, To avoid the overlapping issue, you can try setting the attribute "valuePosition" in the dataset element of your specific data. By default, this attribute is set to AUTO mode in which the alignment of a data value is determined automatically based on the position of its plot point. In ABOVE mode, a data value is displayed above the plot point unless a plot point is too close to the upper edge of the canvas while in BELOW mode, a data value is displayed below the plot point unless a plot point is too close to the lower edge of the canvas. Refer this link: http://jsfiddle.net/vishalika/8Fq44/1/ Hope this helps.
  2. Getting list of hidden legend items

    Hi, Thanks for sharing the solution. It would be helpful for others. Happy FusionCharting
  3. Hi, Welcome to FusionCharts Forum. Can you provide some more details like are you trying to render the chart using the database or static string of data? Also which version of FusionCharts you are using? You can refer the latest sample of FusionCharts using PHP wrapper: https://www.dropbox.com/s/4g2gur3f3vdeb67/php_samplewith_%20XML.rar?dl=0 Awaiting response.
  4. Y-axis mid values

    Happy FusionCharting!!!
  5. Overriding in fusioncharts

    Happy FusionCharting!!!
  6. Overriding in fusioncharts

    Hi, Try hiding the Y-axis values by setting "showDivlinevalues":"0", and create the trend line. This will show the trend line value and you can set the Y-axis values using Text Annotations. Hope this helps.
  7. Hi, As per your point mentioned in the previous mail, sharing a screenshot for more clarification. Please confirm if you are talking for the same. Awaiting response.
  8. Need your suggestion

    Hi, Welcome to FusionCharts forum. It seems that for the second time the dataSource is not properly populated as per requirement. You can check if the first chart is disposed properly. Also, if unable to resolve , try sending us a scaled down sample so that we can look into this and suggest. Awaiting response.
  9. Y-axis mid values

    Hi, Apology for the delay. The Zero plane is seen as negative value is placed and with respect to it the other values are plotted. You can replace the 0 value using Annotations. Hide the 0 value using "showZeroPlaneValue":"0" na duse Text Annotations for the same. For more details you can check out this link: https://support.fusioncharts.com/support/solutions/articles/5000551818 Hope this helps.
  10. Hi, Welcome to FusionCharts Forum. In 2D charts, the alternate grid color is present and in 3D charts no alternate grid color is present. To disable it, try setting showAlternateHGridColor='0' in the chart element of your XML/JSON file. Also,there is a gradient set for 3D charts so the difference is seen. It is intended behaviour. Hope this helps.
  11. Hi, Glad to know that the issue is resolved. Happy FusionCharting!!!!
  12. Overriding in fusioncharts

    Hi, You can refer the Trend line attribute supported by FusionChartsv3.7.1: http://www.fusioncharts.com/dev/usage-guide/configuring-your-chart-trend-lines-and-zones.html If you can specify which value you want to override, then I can suggest the use case required. Please elaborate. Awaiting response.
  13. Way to format sum value in stacked column chart

    Hi, The requirement is possible using a feature supported by FusionCharts called Annotation. Refer this link for Annotation: http://www.fusioncharts.com/dev/usage-guide/annotations/introduction.html Text annotations will help you to display the required value. Refer the live JSFiddle link for this: http://www.fusioncharts.com/javascript-chart-fiddles/?feature=Annotations--in--charts Hope this helps.
  14. Hi, We have forwarded the issue to our engineering team and as per their feedback this is an intended behaviour. This is not a bug but an optical illusion / error due to the depth (the z factor) in 3D charts. Due to the depth and perspective used in 3D chart the lines pointers appear off place. You can see that the column's front edge ends at the point where the anchor is, so if we do not have the columns the lines anchors appear off place, because we do not shift positions ( z- depth) of dataplots based on visibility of other dataplots. Hope this helps.
  15. Hi, Thanks for getting in touch! As per our chat discussion, we have tested the older version files and executed the use case. The issue got replicated. To solve the issue, you have two options available from our end: 1. Only updating the 'SharpVectorAssembly' this issue can be resolved. Refer this for the sample: https://www.dropbox.com/s/o6r6az1ddezw9vx/FusionCharts3.3.1_Export_updatedSharpVectors.rar?dl=0 2. Or Update the FusionCharts library and ASP.NET wrapper files. Refer this sample for the same: https://www.dropbox.com/s/9ld6md77j6xij41/FusionCharts3.7-.NETExportWrapperSample_ServerSide.rar?dl=0 After updating the SharpVector assembly, we have not replicated the issue. Please check and confirm from your end. Awaiting response.
  16. Hi, Welcome to FusionCharts Forum. In FusionChartsv 3.7.1. ,batch exporting is natively not supported. Using third party tools, it can be done. Also, as per your issue if you can share any scaled down sample so that we can replicate the issue. Awaiting response.
  17. Hi, Can you please recheck the issue with the chart type "mscolumn3dlinedy" Refer this JSFiddle for the same: http://jsfiddle.net/vishalika/4REJ5/54/ Awaiting response.
  18. Hi, The issue has been logged from our end. Will keep you posted for the same.
  19. Hi, It is not possible to use CSV format in ASP.NET wrapper. There was an error in the documentation and will update it as soon as possible. Hope this helps.
  20. Hi, The issue has been replicated from our end. The chart type 'mscombi3d' is showing this issue. We are working on it. Will keep you posted for the same.
  21. Hi, Currently, we cannot provide you with any timeline for this. It is not available in our earlier as well as latest versions. Meanwhile you can post your requirement in this link: https://support.fusioncharts.com/support/discussions/forums/5000226442 If suitable, we will try to get back on this. Hope this helps.
  22. Hi, Welcome to FusionCharts Forum. Hiding the entire row after the legend is off is not possible using FusionChartsv3.7.1. In this chart type it is not possible since the category and values placed are not always row wise so white color is added for this and hiding functionality has not been added. Hope this helps.
  23. Hi, Welcome to FusionCharts Forum. Using the attribute "initiallyHidden" helps to initially hide a dataset on chart loading. Works from the dataset object level in JSON data. Set it to 1 to hide the plots of a series initially, on chart load. Default value is 0 for all series and they show up initially. Refer this link of JSFiddle for the same: http://jsfiddle.net/vishalika/dF8Nc/6/ Hope this helps.
  24. Hi, The issue is replicated. But as per your use case another condition has to be included in the code for this scenario. Another 'if' clause for the null data will help to solve out the issue. Currently no sample implementation is present. We will try to share the same as soon as possible.
  25. Display data in HTML Table

    Hi, There is in particular no FusionCharts API for the requirement directly. But it can be done using the API getDataAsCSV(). Refer this link for the same: http://www.fusioncharts.com/dev/usage-guide/how-to-guides/view-data-of-existing-chart-on-page.html Hope this helps.