-
Content count
655 -
Joined
-
Last visited
Posts posted by Ayan Bhadury
-
-
Hi Danny,
Apologies for the delay.
You can try out FusionExport for saving the chart image to your disk along with much more functionalities: https://www.fusioncharts.com/dev/exporting-charts/using-fusionexport/overview
For the issue related to wkhtmltoimage please check their forum, if you are getting any issue logged from the fusioncharts library please let us know.
-
Hi,
Please find the solution to your queries :
Customizing the shadow property is not possible as of now.
Setting the legend as the dashed line is also not possible as of now.
If you have an active license please drop a mail to [email protected] so that we could prioritise your requirments. -
If you are using typescript apply in the following way :
FusionCharts.options['license']({ key: '<YOUR KEY>', creditLabel: false, });
-
Hi @RandyBirch
No problem! please drop a mail to [email protected]
Meanwhile please check out our vb.net wrapper: https://www.fusioncharts.com/dev/getting-started/aspnet/your-first-chart-using-aspnet
-
15 minutes ago, Kacper Rokicki said:It's not a solution - if we pay for a license, I think we can expect that these kind of bugs will we fixes in less than 4 months
@Kacper Rokicki Please drop a mail to [email protected] with your license details
-
54 minutes ago, Kacper Rokicki said:@Kacper Rokicki Please try with fusioncharts:3.15.1
-
FusionCharts 3.2.3 is a flash-based version that is now deprecated, kindly upgrade to the latest version 3.16.0, please refer to the links below
Upgrade from flash to JavaScript: https://www.fusioncharts.com/dev/upgrading/from-flash-to-javascript
Render charts using jquery : https://www.fusioncharts.com/dev/getting-started/jquery/your-first-chart-using-jquery
-
palettecolors works at the chart object level if you want to set color at the data level use color attribute data:[{ label:'A', value:100, color:"#808080" }]
-
The data structure for bar2d and scrollbar2d is different
bar2d - single series charts, have label & value as an object example: http://jsfiddle.net/fusioncharts/y3H2G/
scrollbar2d - multi-series chart, have separate category object, and dataset object, demo : http://jsfiddle.net/fje9xsgm/ -
Hi,
Please set divLineAlpha as 0 at the chart object level
-
8 minutes ago, RTime said:I don't have the license yet, I'm using the trial version, I'm still considering whether to buy it
okay, for php implementation please check other web forums or kindly get our support license, if you face any problem with the chart library I would be assisting you accordingly,
-
4 hours ago, RTime said:can you give me an example please?
In the logic I use (and which I downloaded from a zip file posted by a colleague of yours) how should I set to always display the same colors for certain values (YES = green, NO = red, N / A = orange and so on)?
Please help me with your licensing details.
-
On 1/16/2021 at 2:35 AM, Anifyclume said:Im building an education game that switches words on different levels and I need a way to display the words that are in a data grid. I couldnt really find the exact command that allows you to display a cell. Anyone have a solution?
-
1 - refer to the demo: https://www.fusioncharts.com/charts/drag-node-charts/network-visualization?framework=javascript
2 - Two nodes can have one connector in the drag-node chart, for multiple connectors use Sankey chart
-
On 1/15/2021 at 10:41 AM, RTime said:Excuse me Ayan,
Is it possible to assign palletscolor by variable name in multiseries charts?yes you can store the values in array or in object or in a variable and fetch them as per your choice
-
On 1/16/2021 at 4:25 AM, RTime said:To generate the correct graph I had to manually remove from the js (jsfiddle) box the first values that duplicated in the json.
The problem is most likely in the PHP code that generates the json but I just can't figure out what it is.
https://jsfiddle.net/4ef2oz53/Please check your implementation logic
-
On 1/15/2021 at 8:29 AM, RTime said:the data that the graph presents continues to be wrong.
The first column should have the data of the second and so on ...the first column (AG) must have the following values;
YES = 61the second column (AN) must have;
YES = 37
NO = 13
N / A = 11the third column must have;
YES = 48
NO = 10
N / A = 3and so on, in practice the first values of the output must not be there
https://jsfiddle.net/z4etx58f/The example which you have shared does not have any series as YES, please note FusionCharts does not manipulate the data, please structure the data properly and visualize the data based on that.
-
12 minutes ago, RTime said:What I mean is that the dataset should start with;
"dataset": [{ "seriesname": "NULL", "data": [{ "value": null, "link": "sa_chart_station_detail.php?pid_station=1" },
instead it starts with;
"dataset": [{ "seriesname": "NULL", "data": [{ "value": null }, { "value": null, "link": "sa_chart_station_detail.php?pid_station=1" },
Please update the demo with your chart data ; https://jsfiddle.net/qjd56g8h/
-
-
0 is considered as a number, it will obviously take a plot space based on your y-axis scale if you do not want to show any plot use null instead of 0, here is a demo : http://jsfiddle.net/bzdso20y/
-
What is the error you are getting? could you please share the JSON data that is retrieved after the chart is rendered? You can check the view page source and share the JSON data or you in the browser console type FusionCharts.items[''chart-object"].getJSONData()
-
On 1/13/2021 at 10:19 PM, Szymon Wojciechowski said:Thank for your answer!
#1.Unfortunately the client didn't agreed with that solution. It supposed to be icon next to node. I was thinking about use event where I before render the icon I will move it. Any ideas?
#2. Another thing that comes out is connector. Is any possibility to provide 2 connectors between to the same nodes? Client wants to have something like in the pic below:1 - You can add an icon in the form of an image and drag it.
2 - If you need two-way communication check out Sankey diagram : https://www.fusioncharts.com/charts/sankey-diagram/simple-sankey-diagram?framework=javascript -
On 1/13/2021 at 5:04 AM, RTime said:Hi everyone, i can't get a stackedcolumn2d chart to work, the query is correct, instead the json output returns wrong data, how is this possible?
This is output MySql queryanswer station answer_count NULL APR 61 NULL AQ1 61 NULL AR 61 NULL AT 61 NULL BA 61 NULL BDG 61 NULL BG 61 NULL BIE 61 NULL BNS 61 NULL BO1 61 NULL BO14 61 NULL BS 61 NULL BUS 61 NULL BZ 61 YES AG 61 YES AL 37 YES AN 48 YES AO 58 NO AL 13 NO AN 10 NO AO 2 N/A AL 11 N/A AN 3 N/A AO 1 And this is output json, is not correct, have you any ideas?
categories":[{"
category":[{"label":"AG"},{"label":"AL"},{"label":"AN"},{"label":"AO"},{"label":"APR"},{"label":"AQ1"},{"label":"AR"},{"label":"AT"},{"label":"BA"},{"label":"BDG"},{"label":"BG"},{"label":"BIE"},{"label":"BNS"},{"label":"BO1"},{"label":"BO14"},{"label":"BS"},{"label":"BUS"},{"label":"BZ"}]}],"
dataset":[{
"seriesname":"NULL","data":[{"value":"61"},{"value":"61"},{"value":"61"},{"value":"61"},{"value":"61"},{"value":"61"},{"value":"61"},{"value":"61"},{"value":"61"},{"value":"61"},{"value":"61"},{"value":"61"},{"value":"61"},{"value":"61"},{"value":"61"}]},{
"seriesname":"YES","data":[{"value":"61"},{"value":"61"},{"value":"37"},{"value":"48"},{"value":"58"}]},{
"seriesname":"NO","data":[{"value":"13"},{"value":"13"},{"value":"10"},{"value":"2"}]},{
"seriesname":"N\/A","data":[{"value":"11"},{"value":"11"},{"value":"3"},{"value":"1"}]}]}Here is a demo based on your data : http://jsfiddle.net/x937haw5/1/
-
Hi,
For the first chart refer to this link: https://www.fusioncharts.com/fusiontime/examples/annotating-single-data-point?framework=javascript
For spider chart refer to this page : https://www.fusioncharts.com/charts/radar-spider-charts
HowTo: Multi-series 2D line chart, dual Y axis, with one or both of the Y axes inverted?
in General usage
Posted · Report reply
Hi,
FusionCharts as of now, supports inverted axis only for single y-axis charts, here is a link for reference: https://www.fusioncharts.com/dev/chart-guide/standard-charts/inverse-y-axis-chart
For dual y-axis support in inverse charts along with the y-axis scale customization, please drop a mail to [email protected] with your license details.