Shrabanee

Members
  • Content count

    34
  • Joined

  • Last visited

Everything posted by Shrabanee

  1. Hi, So we came across this issue in mobile. It is not showing the value on the column with value as 1 when there is another column with higher value (More than 10) in the chart. This is happening on both Android and iOs devices. Please refer screenshots attached. NOTE: It is fine for the stack chart though.
  2. Can I change Legend text for 3D pie chart?

    Hi So I found one solution for this requirement. I have created the label as "label +' : '+ value", which is used to show the text in the legend.That work like a wonder for me. NOTE : You have to change the tooltip text and set showValues : "0" . A code to try out: FusionCharts.ready(function () { var revenueChart = new FusionCharts({ type: 'pie3d', renderAt: 'chart-container', width: '500', height: '400', dataFormat: 'json', dataSource: { "chart": { "caption": "Split of Revenue by Product Categories", "subCaption": "Los Angeles Topanga - Last month", "numberPrefix": "$", "startingAngle": "90", "decimals": "0", "centerLabelFontSize": "20", "theme": "fint", "showPercentValues": "0", "enableSmartLabels": "0", "showLegend": "1", "showLabels" : "0", "showValues" : "0", "plotToolText": "<div style='font-size:14px'>$label</div>", }, "data": [{ "label": "Not Sold : 400", "value": "400" }, { "label": "Sold : 600", "value": "600", "color" : "#00ffff" }] } }).render(); }); Hope this will help someone.
  3. Hi, I am using 3D pie chart. I don't want to show the default legend. Instead I want to show the legend with the corresponding value. I was checking the API but could not get any solution. Can anyone help me with this?
  4. Can I change Legend text for 3D pie chart?

    Hi @Akash Biswas That can help me. Thanks for the help
  5. Can I change Legend text for 3D pie chart?

    Hi @Akash Biswas Thanks for your response. The fiddle you have given is not showing any chart.
  6. Thanks for the response @Ayan Bhadury I am using required data format for different charts. I am not just changing the type of the charts. I have checked the APIs before using. So there is no issue with that. Since I am rendering the charts dynamically and I was using 'renderAt' , this error was coming. After removing that I am not seeing the error.
  7. Here is the stack trace of the error: a._setFillAndStroke @ fusioncharts.js:510 a._engine.rect @ fusioncharts.js:536 L.rect @ fusioncharts.js:449 drawLegend @ fusioncharts.js:936 drawLegend @ fusioncharts.js:1042 _updateVisuals @ fusioncharts.js:1038 draw @ fusioncharts.js:1041 k @ fusioncharts.js:1001 q @ fusioncharts.js:39 requestAnimationFrame (async) q @ fusioncharts.js:39 requestAnimationFrame (async) q @ fusioncharts.js:39 requestAnimationFrame (async) q @ fusioncharts.js:39 requestAnimationFrame (async) q @ fusioncharts.js:39 requestAnimationFrame (async) q @ fusioncharts.js:39 requestAnimationFrame (async) q @ fusioncharts.js:39 requestAnimationFrame (async) q @ fusioncharts.js:39 requestAnimationFrame (async) q @ fusioncharts.js:39 requestAnimationFrame (async) q @ fusioncharts.js:39 requestAnimationFrame (async) q @ fusioncharts.js:39 requestAnimationFrame (async) q @ fusioncharts.js:39 requestAnimationFrame (async) q @ fusioncharts.js:39 requestAnimationFrame (async) q @ fusioncharts.js:39 requestAnimationFrame (async) a.addJob @ fusioncharts.js:40 u.requestAnimFrame @ fusioncharts.js:584 d @ fusioncharts.js:378 Wa.animate @ fusioncharts.js:473 _chartAnimation @ fusioncharts.js:1040 _updateVisuals @ fusioncharts.js:1037 draw @ fusioncharts.js:1041 k @ fusioncharts.js:1001 q @ fusioncharts.js:39 requestAnimationFrame (async) a.addJob @ fusioncharts.js:40 init @ fusioncharts.js:1003 u.createChart @ fusioncharts.js:930 render @ fusioncharts.js:1927 render @ fusioncharts.js:72 (anonymous) @ fusioncharts.js:81 triggerEvent @ fusioncharts.js:45 b.raiseEvent @ fusioncharts.js:45 renderChart @ fusioncharts.js:81 render @ fusioncharts.js:77 Hope this will help.
  8. Hi @Ayan Bhadury So I am trying to use pie chart and stackchart. For both of them only I am getting this error in console. When I am changing the type to bar chart, everything is fine.
  9. Hi, Any update on this issue? I am still seeing it while using.