-
Content count
204 -
Joined
-
Last visited
Everything posted by Prerana
-
Hello, Thanks for the query. We have logged this issue as an improvement, will keep you posted regarding the same. Please feel free to revert back to us for further assistance.
-
Upgrade 3.8.0 => 3.11.3 loses x-axis labels if slanted
Prerana replied to ron.savage's topic in General usage
Happy FusionCharting!! -
possible to make label background transparent?
Prerana replied to Emilio's topic in FusionCharts and ASP.NET
Hello, The attribute labelBgAlpha and labelBgColor is not supported by vLine. Kindly refer the doc to know more about the attribute supported by vLine. However as a workaround, you can achieve your requirement using text and shape annotation. Kindly refer the sample fiddle given below for the implementation. https://jsfiddle.net/Prerana/ps62tnz0/4/ Please visit this doc for further reference about annotation. Hope this will help. -
Highlight some labels only (with background color)
Prerana replied to bogdanm's topic in General usage
Hello, Glad to know that it worked. Happy FusionCharting -
Unable to export charts to images using FCExporter (PHP)
Prerana replied to ndaumalle's topic in General usage
Hello, Thanks for your query. Kindly send us the scaledown sample so that we can replicate the issue at our end. However you can visit the link for further reference about the setup of private export server using php - http://www.fusioncharts.com/dev/exporting-charts/server-side-export/setup-private-export-server-php.html#_ga=1.133969100.379321021.1469940518 Hope this will help. -
Highlight some labels only (with background color)
Prerana replied to bogdanm's topic in General usage
Hello, Thanks for the query. Your requirement is achievable using the data level attribute for the labels. e.g. labelBgColor, labelFontColor etc. Kindly refer the fiddle below for the implementation. http://jsfiddle.net/qvkq0a41/72/ Please refer the doc to know more about the attribute supported by column chart. Hope this will help. -
Upgrade 3.8.0 => 3.11.3 loses x-axis labels if slanted
Prerana replied to ron.savage's topic in General usage
Hello, Thanks for replying back. As you have licensed version of fusioncharts js files, please replace the previous js file with the licensed js files in your code to remove the watermark. Please visit this doc to know more about how to upgrade to the latest version. http://www.fusioncharts.com/dev/getting-started/upgrading-from-previous-versions.html Note - Please clear the browser cache and then render the chart. Hope this will help. -
Upgrade 3.8.0 => 3.11.3 loses x-axis labels if slanted
Prerana replied to ron.savage's topic in General usage
Hello, Glad to know that it works. -
Upgrade 3.8.0 => 3.11.3 loses x-axis labels if slanted
Prerana replied to ron.savage's topic in General usage
Hello, Thanks for replying back. . I have attached the modified code of yours, and its working as expected from our end. However you can also achieve your requiremen using FusionCharts PHP wrapper. Kindly refer the doc link, for further information about FusionCharts PHP wrapper. Hope this will help. sample_forum.zip -
Upgrade 3.8.0 => 3.11.3 loses x-axis labels if slanted
Prerana replied to ron.savage's topic in General usage
Hello, Thanks for the reply. The json structure you have provided is not in a correct format. Kindly have a look to the fiddle link given below to see the json format. http://jsfiddle.net/Prerana/T5C6h/2119/ Hope this will help. -
Upgrade 3.8.0 => 3.11.3 loses x-axis labels if slanted
Prerana replied to ron.savage's topic in General usage
Hello, Thanks for replying back. We are not able to replicate the issue using the gist you have sent because there are many attributes whose values are not available in the sample, and you are setting the value of those attribute using some array/function. Kindly send me the entire encoded json including the data using which the chart is rendering not the php code. Hope this will help. -
Upgrade 3.8.0 => 3.11.3 loses x-axis labels if slanted
Prerana replied to ron.savage's topic in General usage
Hello, We have replicate the issue at our end and we are looking into this. However as a workaround you can use canvasPadding attribute, which will solve the issue. Kindly refer the sample below for the implementation. http://jsfiddle.net/Prerana/T5C6h/2119/ Hope this will help. -
dataLabelRollOver event not giving correct index for scrollcombi2d chart type
Prerana replied to Anil Vemulapalli's topic in Bug Reports
Hello, Thanks for the query. The "index" property is not supported by "dataObj" and the "dataIndex" values are also overwritten on scroll. We found both of these as bug and reported internally. We will keep you posted regarding the same. Hope this will help, -
Hello, Glad to know that it helped. Happy FusionCharting
-
Hello, Thanks for the query. Your requirement is achievable. We have created a sample as per your requirement i.e. a map which has entityClick event and on entityClick it shows few info about that entity in a model window. Kindly refer the sample below, for the implementation. http://jsfiddle.net/Prerana/s9ybeay5/10/ Hope this will help.
-
Hello, Thanks for replying back. The manageLabelOverflow attribute tries to manage overflow of data labels. If enabled, data labels are either wrapped or truncated with ellipses to prevent them from overflowing out of the chart canvas. In case smartLabels is disabled, the labels are wrapped to avoid the overflow. Since smartLabels is disabled, the wrapped labels might get overlapped. When smartLabels is enabled, management of the overflowing labels fit in the "quadrant specific smart labeling algorithm. But when useEllipsesWhenOverflow attribute is enabled, long data labels are truncated by adding ellipses to prevent them from overflowing the chart background. The default value is 1. This setting works only when manageLabelOverflow is set to 1. Hope this will help.
-
Hello, Thanks for replying back. We have logged this as an improvement, will keep you posted regarding the same. Hope this will help,
-
Hello, Thanks for the query. Please use the attribute startingAngle and set its value i.e. "startingAngle":"100", that will resolve the issue. Or you can also achieve your requirement by reducing the pie radius using "pieRadius" attribute. Kindly refer the sample given below for the implementation. http://jsfiddle.net/Prerana/rauxnqsd/10/ Hope this will help
-
Hello, Thanks for the query. The attribute is working as expected from our end. Kindly include "manageLabelOverflow" attribute at chart attribute level. Kindly refer the fiddle below for the implementation. https://jsfiddle.net/Prerana/c6yezkpb/9/ Hope this will help,
-
How to integrate fusioncharts in node js.
Prerana replied to fabpromocodes's topic in Installation and Upgrades
Hello, Thanks for the query. Kindly refer the doc link given below, to know how to integrate fusioncharts with node js. http://www.fusioncharts.com/dev/using-with-server-side-languages/tutorials/creating-interactive-charts-using-node-express-and-mongodb.html You can also check the doc about how to add fusioncharts as a dependency using npm. http://www.fusioncharts.com/dev/getting-started/installing-via-npm-and-bower/installing-via-npm.html Hope this will help, -
Hello, Thanks for replying back. Its a bug, we have logged it internally, and will keep you posted regarding the same For a workaround you can set the value of the chart margin attribute as negative. e.g. "chartLeftMargin":"-20" Kindly refer the fiddle below for the implementation. http://jsfiddle.net/Prerana/uc249u4v/4/ Hope this will help,
-
Hello, Thanks for the query. For your 1st problem i.e. If lower limit value is not a zero then position of trend point label is wrong. Sol - This issue has been already logged internally, will keep you posted. For the query i.e. How can I reduce chart margins? Sol - There are attributes to set chart margin, please go through our docs for the details - http://www.fusioncharts.com/dev/chart-attributes.html?chart=angulargauge&attributeName=chart_chartRightMargin and kindly refer the fiddle given below for the implementation. http://jsfiddle.net/m1qd99tk/5/ Hope this will help,
-
How to interact with specific bubbles in a bubbles chart?
Prerana replied to diogobaeder's topic in General usage
Hello, Thanks for the query. Showing/hiding any specific bubble is not feasible, however you can show/hide the entire data series using legend. Hope this helps, -
Hello, Thanks for replying back. Your issue is not being replicated from our end, so we will arrange a remote session for you. Kindly drop us mail at [email protected] with the details of the issue and your convenient time for the session. Hope this helps,
-
Hello, Thanks for replying back. We have used the code provided by you, still the issue is not being replicated. Kindly refer the screenshot and the sample attached for the implementation. Hope this helps, testing_forum.html