Nabajeet

Members
  • Content count

    152
  • Joined

  • Last visited

Everything posted by Nabajeet

  1. Drag Note Caption

    Hi, You can use canvasTopMargin to set some padding at the top of the chart so that the data plots do not overlap, which is causing the problem.
  2. Overlapping Values On Multi-Series Line Chart

    Hi, Stacked Charts does not support valuePosition, a workaround shall be to use annotations.
  3. Is this chart possible

    Hi Jason, FusionCharts do not have any charts that exactly meets your requirements, but you can try out MSStackedColumn2DLineDY. Please find a demo in this fiddle: http://jsfiddle.net/nabajeet_fusioncharts/pb5gzpau/
  4. Hi, When using tabs, only the chart which is on the visible tab can be exported because Fusion Charts export component need to capture the chart and this can be done only for the visible chart.
  5. Hi Vishnu, Version 3.4.1 supports only JavaScript rendering and thus Flash Charts are no longer supported. Styles tags were for Flash charts and since flash charts are no longer supported style tag has been deprecated. you can use the following to set the font of the data values: valueFont, valueFontColor, valueSize, valueFontBold, valueFontItalic, valueAlpha, valueFontAlpha and for captions: captionAlignment, captionOnTop, captionFontSize, subCaptionFontSize, captionFont, subCaptionFont, captionFontColor, subCaptionFontColor, captionFontBold, subCaptionFontBold, alignCaptionWithCanvas, captionHorizontalPadding in the chart attribute.
  6. Overlapping Values On Multi-Series Line Chart

    Hi, By property of the charts only the value of the chart which is declared last shall be displayed in the tooltips if a number of data points overlap each other. The only solution is to add static tooltext( including the text you want to add) to that category where the data values overlap.
  7. Value under the dial with Gauge

    Hi, We suggest you to figure out x and y coordinates of the position of the chart where you want to display the dial value, it should work for you because the X and Y coordinate will be relative only to the chart concerned and if you have more than one charts it shall not effect the others or any other elements of the web page.
  8. Value under the dial with Gauge

    Hi, Welcome to FusionCharts Forum. If you want to show the dial value below the pivot, you can set: <chart ... valueBelowPivot='1' ...> Also, you can configure the x and y position as under: <dials> <dial value="92" ... showValue="1" valueX="150" valueY="120"/> <dial value="79" ... showValue="1" valueX="210" valueY="120"/> </dials>
  9. Highlight chart element

    Hi Paul, Can you share with us a use case of how your collaboration tool works, and how you programmatically render it on a different browser.
  10. slice index in slicingStart/End

    Hi Paul, Thank you for your suggestion, we shall let you know if this feature can be implemented in the near future.
  11. Hi Paul, We shall forward your requirement to the engineering team and let you know if your requirement can be implememted.
  12. Highlight chart element

    Hi Paul, To highlighted a part of the chart programatically you have to re render the whole chart using methods like setChartData and set a highlighted color for that particular set captured using dataPlotRollOver. But you may face some performance issues as the whole chart is re rendered.
  13. Tooltext overflowing container in Internet Explorer 9

    Hi, Please upgrade to the latest version of FusionCharts XT suite, that shall solve your problem.
  14. Updating Data on Fusion Maps

    Hi, Updating specific values inside the dataset is not possible, with setChartData all the chart properties must be set. You can use setXMLURL/setJSONURL and other such methods but these too shall update the whole chart.
  15. Hi, Please confirm if your issue has been been resolved.
  16. Hi, Zoom-line charts do not support drill-down link feature. Sorry for your inconvenience
  17. Tooltip not visible

    Glad to help.
  18. Tooltip not visible

    Ok, please let us know if you have any further queries.
  19. Glad that your problem was solved. To download the Evaluation version of FusionCharts Suite XT v3.4.1, please visit the link: http://www.fusioncharts.com/download/
  20. Multi-series Bar 3D label link

    Hi Vladimir, You can use the link property in the data set to create links to any external pages. Please check out this fiddle for a demo: http://jsfiddle.net/nabajeet_fusioncharts/sqpor2o7/1/ Hope this helps.
  21. Gannt Chart - FC_Rendered not working?

    Can you share a sample of your code in forum or else you can mail it to support.
  22. Tooltip not visible

    Hi Alex, Can you share a sample of your code in forum or else you can mail it to support.
  23. Hi, Please try upgrading to the latest version of FusionCharts if you are using older versions and let us know if your issue is being resolved.
  24. Tooltip not visible

    Hi Alex, There should not be a problem in displaying the tooltips if the chart is rendering properly, please check that the FusionCharts JavaScript library is properly installed and also do check its version.You can also try setting "tooltext" in individual set elements to show custom tooltips. Can you please share more about the environment where the issue is being faced? Hope this helps.
  25. Sum issue in Waterfall Charts

    Hi, This option is not available in Waterfall charts, to achieve this you can use annotations. Please check this fiddle for a demo: http://jsfiddle.net/nabajeet_fusioncharts/z4jwkh3n/3/ Hope this helps