Vishalika
Members-
Content count
301 -
Joined
-
Last visited
About Vishalika
-
Rank
Supreme Being
Profile Information
-
Gender
Not Telling
Recent Profile Visitors
7,995 profile views
-
Using FusionCharts x-axis labels as links in FusionCharts XT method
Vishalika replied to Akshay S's topic in General usage
-
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.
-
Hi, Please note STYLE element is no longer supported. In style the attribute numbersuffix can't be styled. Hope this helps.
-
Using FusionCharts x-axis labels as links in FusionCharts XT method
Vishalika replied to Akshay S's topic in General usage
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. -
Calculation issue with annotations macros
Vishalika replied to MGS_Sebastien's topic in General usage
Hi, Glad to know that it worked. Happy FusionCharting!!!- 5 replies
-
- division
- multiplication
-
(and 3 more)
Tagged with:
-
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.
-
Calculation issue with annotations macros
Vishalika replied to MGS_Sebastien's topic in General usage
Hi, Please check this updated JSFiddle: http://jsfiddle.net/vishalika/x5FBh/636/ Hope this helps.- 5 replies
-
- division
- multiplication
-
(and 3 more)
Tagged with:
-
Changes in Event handling in 3.10.1 release?
Vishalika replied to Jordi's topic in Installation and Upgrades
Hi, The issue has been replicated. We are looking into it and will keep you posted for the same. -
Calculation issue with annotations macros
Vishalika replied to MGS_Sebastien's topic in General usage
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.- 5 replies
-
- division
- multiplication
-
(and 3 more)
Tagged with:
-
Export black and white on IE11 (Column/Bar chart only)
Vishalika replied to Kewley's topic in Bug Reports
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. -
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.
-
Export black and white on IE11 (Column/Bar chart only)
Vishalika replied to Kewley's topic in Bug Reports
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. -
Changes in Event handling in 3.10.1 release?
Vishalika replied to Jordi's topic in Installation and Upgrades
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. -
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.
-
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.