Vishalika

Members
  • Content count

    301
  • Joined

  • Last visited

About Vishalika

  • Rank
    Supreme Being

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

7,578 profile views
  1. Script Error In Fusioncharts.hc.js

    Hi, Please note support for rendering of charts, gauges, and maps in Adobe Flash has been deprecated since v3.4.0 or higher versions. SWF files are not needed after upgrading to v3.4.0 or higher. Please check with the latest version of FusionCharts v3.10.1 and confirm if this issue occurs or not. Download the package from this: http://www.fusioncharts.com/download/ Awaiting response.
  2. Column2D: Style numbersuffix

    Hi, Please note STYLE element is no longer supported. In style the attribute numbersuffix can't be styled. Hope this helps.
  3. Hi, Welcome to FusionCharts Forum! Using FusionCharts v3.10.1, you can use the attribute "labellink" to add links to X-axis labels. Refer this sample JSFIddle: http://jsfiddle.net/vishalika/s7t8F/1184/ You can download the package from this: http://www.fusioncharts.com/download/ Hope this helps.
  4. Calculation issue with annotations macros

    Hi, Glad to know that it worked. Happy FusionCharting!!!
  5. Column2D: Style numbersuffix

    Hi, Welcome to FusionCharts Forum! Please support for rendering of charts, gauges, and maps in Adobe Flash has been deprecated since v3.4.0 or higher versions. SWF files are not needed after upgrading to v3.4.0 or higher. Also, we have cosmetic properties to styles certain elements of charts in our latest release v3.10.1 Refer this link for the chart attributes: http://www.fusioncharts.com/dev/chart-attributes.html?chart=column2d Hope this helps.
  6. Calculation issue with annotations macros

    Hi, Please check this updated JSFiddle: http://jsfiddle.net/vishalika/x5FBh/636/ Hope this helps.
  7. Hi, The issue has been replicated. We are looking into it and will keep you posted for the same.
  8. Calculation issue with annotations macros

    Hi, You can use only the + or - operators to create a macro expression. There should be at least one macro name to create a macro expression. Common mathematical expressions like 30 + 10 - 5, which do not contain a macro, will not work. Hope this helps.
  9. Hi, It can set it up in Mac OS .But it requires lot of config to be set as mentioned in Inkscape/ImageMagik If any issues being faced while implementing, do let us know. Hope this helps.
  10. The Case of the Missing Charts

    Hi, Unable to replicate it at our end. Please mention the version FusionCharts you are using. Also, if possible share scaled down sample to replicate it. Awaiting response.
  11. Hi, Due to lot of limitations with Batik, we have moved to Inkscape and ImageMagick. You can refer this link for the same: http://www.fusioncharts.com/dev/exporting-as-image-and-pdf/server-side-export/setup-private-export-server-php.html Hope this helps.
  12. Hi, Please check this section of documentation: http://www.fusioncharts.com/dev/using-with-javascript-libraries/angularjs/configuring-charts-using-the-angularjs-scope-object.html#trigger-scope-events-from-the-chart If possible, share any JSFiddle to replicate the issue. Awaiting response.
  13. X-Axis labels skipping every second one

    Hi, To show all the labels, avoid using labelStep attribute since it will skip the number of labels specified. And "labelDisplay":"rotate" will help. If unable to do so share your data will check the same. Hope this helps.
  14. real time update of gauge

    Hi, Welcome to FusionCharts Forum! In Angular Gauge, it is possible to set the dial value to the maximum limit when the value is beyond maximum limit using the FusionCharts API setData(). Syntax: setData(dialIndex, value) Description: This method sets the data for the given dial index on the chart. The first dial is represented by index 1, second by 2 and so on. Link: http://www.fusioncharts.com/dev/api/fusioncharts/fusioncharts-methods.html#setData Also, you can change the maximum limit value dynamically using FusionCharts API setChartAttribute() . Syntax: setChartAttribute(attributes, value) Description: Updates a chart's data attributes with the new attribute-value pair. In other words, it updates a chart's data definition root. Link: http://www.fusioncharts.com/dev/api/fusioncharts/fusioncharts-methods.html#setChartAttribute Hope this will help your use case scenario.