Vishalika
Members-
Content count
301 -
Joined
-
Last visited
Everything posted by Vishalika
-
Howto fusionchart XT Multi-series chart from Database (SQL)
Vishalika replied to stineco's topic in FusionCharts and PHP
Hi, Sharing a sample of PHP and MySQL with JSON data: https://www.dropbox.com/s/ruk3hth9xs6ejou/mschart_php-sql.rar?dl=0 Please check and share your feedback. -
Hi, Please check the updated JSFiddle: http://jsfiddle.net/vishalika/7xr3Ls9r/1/ Try setting the pieRadius attribute. Hope this helps.
-
Hi, Welcome to FusionCharts Forum!! 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. The FusionCharts Suite XT jQuery plugin allows you to use jQuery syntax to render and manipulate your charts and graphs seamlessly across all browsers and devices. It helps you add interactive JavaScript charts to your web and mobile applications, combining the delight and comprehensiveness of the FusionCharts Suite XT with the easy-to-use jQuery syntax. FusionCharts JQuery Plugin can be downloaded from here. Documentation: http://www.fusioncharts.com/dev/using-with-javascript-libraries/jquery/introduction.html Hope this helps.
-
canvasbgColor behaves differently depending on chart type
Vishalika replied to jemptymethod's topic in General usage
Hi, Welcome to FusionCharts Forum. Refer this link for configuring canvas of 3D charts: http://www.fusioncharts.com/dev/basic-chart-configurations/canvas.html#configuring-the-3d-canvas Hope this helps. -
Hi, Welcome to FusionCharts Forum. In FusionChartsv3.9, the issue stated above is resolved, please check this: http://jsfiddle.net/vishalika/y6xehhap/2/ Hope this helps.
-
How to Change the Hover Text (Export Chart) on Download Button
Vishalika replied to Danlop's topic in Bug Reports
Hi, The tooltip of 'Export chart' can be changed if you have the source code file of FusionCharts. The details for the same can be shared if you are a licensed customer. Please confirm for it. Awaiting response. -
Fusion Charts 3.7.1 Trend Zone doesn't render when off axis
Vishalika replied to deenairn's topic in General usage
Hi, Welcome to FusionCharts Forum. The use case you have mentioned can be avoided if you set the chart level attributes 'yaxismaxvalue' /'yaxisminvalue' depending on the requirement. Refer this JSFiddle for the same: http://jsfiddle.net/vishalika/YcuQ7/28/ Hope this helps. -
Add options to Export Menu/ Add button under Export Menu
Vishalika replied to A_Chance's topic in General usage
Hi, In the latest version of FusionCharts v3.9, when exporting is enabled, a drop down menu appears which allows selection from one of the formats. You can select the desired format and the image/PDF gets downloaded to your machine. Refer this link: http://www.fusioncharts.com/dev/exporting-as-image-and-pdf/server-side-export/introduction.html Hope this helps. -
Line chart width issues (specifically in IE9 and IE10)
Vishalika replied to BekahMurphy's topic in General usage
Hi, The code you have shared seemed to be browser console window and unable to check out anything. Try sharing a scaled down sample for the same. Also, share the FusionCharts version you are using. Awaiting response. -
Hi, Could you please share your XML/JSON data, so that we can suggest further? Awaiting response.
-
Hi, To export the data in CSV format. you can get the data as CSV and customize it accordingly to export it. Refer this link: http://www.fusioncharts.com/dev/api/fusioncharts/fusioncharts-methods.html#getDataAsCSV In the PHP implementation write the JavaScript function with respect to chart ID. The attribute is "exportShowMenuItem" , try setting it. Hope this helps.
-
Set axis font size independently -- outCnvBaseFontSize?
Vishalika replied to Grid Trekkor's topic in General usage
Hi, The JSFiddle link did not work due to link issue: http://jsfiddle.net/vishalika/x5FBh/444/ Check the updated one and share your feedback. -
Cannot get javascript charts to work
Vishalika replied to Steve Workings's topic in Installation and Upgrades
Hi, As per your data we have tried creating a JSFiddle, at our end and it is working fine. Refer this link: http://jsfiddle.net/vishalika/x5FBh/440/ Also, note that the name of the .js files should be all in lower case. Hope this helps. -
Set axis font size independently -- outCnvBaseFontSize?
Vishalika replied to Grid Trekkor's topic in General usage
Hi, Please check this JSFiddle link : http://jsfiddle.net/vishalika/x5FBh/436/ Also, refer some live sample here: 1.http://www.fusioncharts.com/javascript-chart-fiddles/?element=Fonts,Axes 2. http://www.fusioncharts.com/javascript-chart-fiddles/?element=Fonts Hope this helps -
Set axis font size independently -- outCnvBaseFontSize?
Vishalika replied to Grid Trekkor's topic in General usage
Hi, To configure the font cosmetics of y-axis name (title), you can use the following attributes. yAxisNameFont ,yAxisNameFontColor yAxisNameFontSize yAxisNameFontBold yAxisNameFontItalic yAxisNameBgColor yAxisNameBorderColor yAxisNameAlpha yAxisNameFontAlpha yAxisNameBgAlpha yAxisNameBorderAlpha yAxisNameBorderPadding yAxisNameBorderRadius ,yAxisNameBorderThickness ,yAxisNameBorderDashed ,yAxisNameBorderDashLen ,yAxisNameBorderDashGap Also, you can refer the chart attributes list of any specific chart type to check out the attributes: http://www.fusioncharts.com/dev/chart-attributes.html?chart=area2d Hope this helps. -
Hi, There are some attribute which will help you set the Y-axis as per your requirement. 1. adjustDiv: FusionCharts XT automatically tries to adjust divisional lines and limit values based on the data provided. However, if you want to set your explicit lower and upper limit values and number of divisional lines, first set this attribute to false. That will disable automatic adjustment of divisional lines. Range: 0/1 2. yAxisValuesStep: By default, all div lines show their values. However, you can opt to display every x(th) div line value using this attribute. Range: 1 or above 3. yAxisMinValue: This attribute helps you explicitly set the lower limit of the chart. If you don't specify this value, it is automatically calculated by FusionCharts XT based on the data provided by you. Range: Numeric Value 4. yAxisMaxValue: This attribute helps you explicitly set the upper limit of the chart. If you don't specify this value, it is automatically calculated by FusionCharts XT based on the data provided by you. Range: Numeric Value 5. numDivlines: Number of horizontal axis division lines that you want on the chart. Range: Numeric value > 0 For the X-axis label display, try setting "labelDisplay" attribute in the chart label. Using this attribute, you can customize the alignment of data labels (x-axis labels). There are 5 options: AUTO, WRAP, STAGGER, ROTATE or NONE. By default, this attribute is set to AUTO mode which means that the alignment of the data labels is determined automatically depending on the size of the chart. WRAP wraps the label text if it is too long to fit in one line. ROTATE rotates the labels vertically. STAGGER divides the labels into multiple lines. Range: 'AUTO', 'WRAP':, 'STAGGER', 'ROTATE', 'NONE' Hope this helps.
-
Javascript drill-down function is not defined
Vishalika replied to Grid Trekkor's topic in Javascript Problems
Hi, Please confirm if you are using the Angular JS plugin of FusionCharts for this implementation. Awaiting response. -
Hi, As per your queries, the suggestions are as follows: 1. To show Y-axis values every five : It depends on the data values you give in the dataset. Refer this JSFiddle link: http://jsfiddle.net/vishalika/s7t8F/718/ 2. To show a vertical div for every X-axis value: Try using "vline" attribute for each label as show in the above JSfiddle. Also, refer this: http://www.fusioncharts.com/dev/basic-chart-configurations/vertical-lines.html Hope this helps.
-
Hi, Welcome to FusionCharts Forum! There is no separate attribute for rotating a chart in FusionCharts. However using some CSS it can be done. Refer this sample: http://jsfiddle.net/vishalika/zy87qhfj/3/ Hope this helps.
-
Hi Siva, The feature shared in the screenshot is not supported in FusionCharts currently. Hope this helps.
-
Hi, The zooming functionality is supported by zoom line charts. Refer this link: http://www.fusioncharts.com/dev/chart-guide/zoom-line-chart/creating-a-zoom-line-chart.html Also, the chart attributes list: http://www.fusioncharts.com/dev/chart-attributes.html?chart=zoomline Hope this helps.
-
Hi, Welcome to FusionCharts Forum. FusionCharts support Dual Y Axis in the chart types mentioned here: http://www.fusioncharts.com/charts/combination-charts-dual-y/ In scatter chart,it is not supported yet.
-
Fusion charts are not responding in Mozilla firefox Version:41.0.0.5738
Vishalika replied to sridhar15's topic in FusionCharts and ASP.NET
Hi, Welcome to FusionCharts Forum. Unable to replicate the issue at our end. Could you please share a screenshot of error generated in the console window of browser? Or any specific use case scenario, for it to replicate. Awaiting response. -
Hi, Could you please upgrade your current version to the latest, i.e, FusionCharts Suite v3.9, which will resolve your reported issue? To avail this licensed release, you would need to re-Download the entire package from the My Orders section of FusionCharts Product Update Center. PUC URL: www.fusioncharts.com/puc/ To download the Evaluation version of FusionCharts Suite XT v3.9, please visit the link: http://www.fusioncharts.com/download/ Hope this would resolve your issue.
-
Tooltips not working on scrolled portion of combi chart
Vishalika replied to johnt's topic in Bug Reports
Hi, Hope you are keeping well. Thank you for your patience. Could you please upgrade your current version to the latest, i.e, FusionCharts Suite v3.9, which will resolve your reported issue? To avail this licensed release, you would need to re-Download the entire package from the My Orders section of FusionCharts Product Update Center. PUC URL: www.fusioncharts.com/puc/ To download the Evaluation version of FusionCharts Suite XT v3.9, please visit the link: http://www.fusioncharts.com/download/ Hope this would resolve your issue. If you require any further assistance please do drop us a mail.