Swarnam

Administrators
  • Content count

    1,122
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by Swarnam

  1. Hey, Welcome to FusionCharts Forum post. Our Engineering team is looking into the compatability issue related to jQuery 1.9 We would update once the issue has been fixed.
  2. Bubble chart

    Hi Ranen, Yes, it is possible to populate the values for X axis automatically by setting "xAxisLabelMode" as Auto. By default "xAxisLabelMode" has been set as "CATEGORIES". In auto mode, the chart automatically calculates and displays the x-axis labels. In this mode, the chart ignores the <categories> element and allows the x-axis to inherit the properties similar to that of the vertical Y-Axis. Ref. Code: <chart xAxisLabelMode='auto' ......> Please refer for more information at: http://docs.fusioncharts.com/charts/contents/AttDesc/BubbleScatter.html#xaxislables Hope this helps.
  3. Hi, Can you try using Styles to apply specific font size for Data labels? "Styles" can be applied in both Multi Series/ Single series chart types. Ref. Code: <chart> <!-- Your data here --> <styles> <definition> <style name='MyFirstFontStyle' type='font' font='Verdana' size='8' /> </definition> <application> <apply toObject='Datalabels' styles='MyFirstFontStyle' /> </application> </styles> </chart> For more information, please refer to the following link: http://docs.fusioncharts.com/charts/contents/Styles/Font.html Hope this helps.
  4. Hey, Yes, due to security issues, by default, Flash can not load cross-domain external data unless cross domain xml is defined in the domain containing the swf. If you are getting the data from another domain, this will not work, as Flash charts block cross-domain data transfer due to Flash's sandbox security model, unless otherwise configured. Hope this helps.
  5. Drill-Down In Multi-Series Chart

    Hi Steve, As mentioned earlier, Linked charts can be drilled down to any chart type as per your requirement. Mutil Series chart can be drilled down to Single series charts and vice versa. Hope this helps.
  6. Fusion charts xt trial in chart

    Hey, To remove the trial banner "FusionCharts XT Trial", you will have to replace the Trial version of JavaScript files with the licensed version. Please refer for more information at: http://docs.fusioncharts.com/charts/contents/Introduction/UpgradingEval.html To hide the "Switch to pin mode" button, set "allowPinMode" attribute to 0. If you wish to move the button to the left, please set "toolbarHAlign" as 'left'. Hope this helps.
  7. Ie 9 And Ie 10 Export Problem

    Hey, Apologies for the delayed response. Please drop a mail to "[email protected]" or use the Product Upgrade Link obtained at the time of purchase to download the latest version.
  8. Zoom Line Chart Macroscopic View

    Hey, Apologies for the delayed response. We are unable to commit any timeline. Once the feature has been implemented, we would update the same thread. Hope this helps.
  9. DebugMode in jqueryplugin is not working?

    Hey, The debugMode" attribute set to 1, displays the debug window only for Flash charts.
  10. Formatting text in SSGrid

    Hey, Welcome to FusionCharts Forum post. Grid component does not support Style features. If you would like to display the label/value using a different color, please try using "baseFontColor" attribute. Also, it is not possible to hyperlink the data labels using FusionCharts currently.
  11. Multiple javascript charts in a single page

    Hey, Please refer to the forum post: http://forum.fusioncharts.com/topic/14769-jqueryplugin-issue/ To render JavaScript charts, SWF files are not required. Hope this helps.
  12. JQueryPlugin Issue:

    Hey, Please find the sample attached to showcase multiple charts/widgets/maps within a single page using jQuery plugin. The JavaScript file present within FusionMaps and FusionCharts are the same. Hope this helps. Fusion_charts_jQuery_plugin.zip
  13. Threshold

    Hey Santhosh, Apologies for the delayed response. Threshold feature is not supported currently using FusionCharts. As a suggestion, please check out Alert Manager feature which is supported in all real-time charts and gauges. Alert Manager helps you define your own thresholds for data values and then perform specific actions for each defined threshold. Please refer for more information at: http://docs.fusioncharts.com/widgets/Contents/AlertManager/Introduction.html Hope this helps.
  14. Fusion Chart Basic

    Hey, It works for Google Chrome too. However, if you have been Data URL method (provide data to chart from files or streams) to provide chart data. Many browsers restrict JavaScript from accessing local file system owing to security reasons. The JavaScript charts, when running locally, will not be able to access data provided as a URL. If you run the files from a server, it will run absolutely fine, as the data is then read and streamed by the server, without the need for JavaScript to directly access local file system. When running locally, however, if you provide the data as string (using the Data String method), it works fine. Hope this helps.
  15. "Fusion Charts XT Trial" banner

    Hey, The watermark are similar across the browser. The difference is due to the rendering mode of charts(Flash/JavaScript) as inferred by you. For Flash, watermark appears as a black bold text on white background, surrounding by a rectangular line box. For JavaScript, at the bottom left of the chart, with grey foreground color text. Hope this helps.
  16. Bullet widget :: Flash player

    Hi Ranen, Yes,FusionWidgets XT, can render the gauges and charts on devices where Flash player is not supported (like in iPhone/iPad), is not installed or is disabled. Please ensure FusionCharts.HC.Widgets.js is present in the same folder as FusionCharts.js. To render FusionWidgets and FusionCharts within a single page, following JavaScript files are required: FusionCharts.js (from FusionCharts XT pack or from the latest pack you have) FusionCharts.HC.js (from FusionCharts XT pack or from the latest pack you have) FusionCharts.HC.Charts.js (from FusionCharts XT pack) FusionCharts.HC.Widgets.js (from FusionWidgets XT pack) jquery.min.js (from any of the packs) Hope this helps.
  17. Linkedchart With Multi-Series

    Hi Benben, Please try using the below code: <chart caption='发电量(1号机组)' xAxisName='时间单位:月' yAxisName='指标值(单位:MWh)' showBorder='1'> <categories> <category label='1月份'/> <category label='2月份'/> <category label='3月份'/> </categories> <dataset seriesName='Product A' > <set value='13400' link='newchart-xml-1month' /> <set value='19600' /> <set value='24000' /> <set value='15700' /> </dataset> <linkeddata id='1month'> <chart caption='test1' xAxisName='test' yAxisName='test' showBorder='1'> <categories> <category label='1月份'/> </categories> <dataset seriesName='A' > <set value='19600' /> </dataset> </chart> </linkeddata> <dataset seriesName='Product B' > <set value='14400'/> <set value='19600' /> <set value='24000' /> <set value='15700' /> </dataset> </chart>
  18. Resizeto And Drill Down Chart Issue

    Hi Mike, Apologies for the delayed response. 1. Using the resizeTo() function does not work for a chart that has been drilled down >> resizeTo() API will not work for the descendant charts.resizeTo() function can be called on any FusionCharts JavaScript Object. Since, the descendant chart is a clone of the parent chart, resizeTo() does not work. 2. Calling render() after drill down will re-render the parent chart, not the drilled down chart. >>Calling render() function will re render the parent chart because child chart is cloned. However, using the FusionCharts XT JavaScript API, you can configure every aspect of the child charts through configureLink() function.You can pass all the properties that a FusionCharts constructor accepts, as parameters to this function. If you would like to specify the child chart dimension, try passing the width of the child chart through configureLink() API either using pixel or percentage dimension. Ref. Code: myChart.configureLink( { swfUrl: 'Charts/Bar2D.swf', width: '30%', overlayButton: { message: ' x ', bgColor:'999999', borderColor: 'cccccc' } }, 0); Hope this helps.
  19. Hi Venkat, Can you please check out Multi Level Pie chart? The Multi-Level Pie chart is a modern data visualization format that is used for displaying hierarchical relationships. You can use it to show both symmetrical and asymmetrical hierarchies. Multi-Level Pie charts in PowerCharts XT offer visual path tracing from a child node right back to the root node. Demo Gallery link: http://www.fusioncharts.com/demos/gallery/#multi-level-pie-chart
  20. Drill-Down In Multi-Series Chart

    Hi Steve, Welcome to FusionCharts Forum post. The descendant charts (or children charts) should not necessarily be the same as parent chart. Linked charts can be drilled down to any chart type as per your requirement. Mutil Series chart can be drilled down to Single series chart/Pie chart or any chart type. Hope this helps.
  21. Memory Leak On Redrawing Gauge

    Hi, Apologies for the delay. We are looking into it. We would update you soon on the same.
  22. Fusion charts in iframe issue:

    Hi Rajavelu, Can you please send us the sample code to replicate the issue? Also, please let us know the version of FusionCharts used supported with the mode of rendering(Flash/HTML5)
  23. Hey, Welcome to FusionCharts Forum post. No, while the number of level increases scroll bar does not appear. The feature you are looking in for is not currently supported.
  24. Hey bmcwhorter, Since you are re rendering the chart with the same id and container, IE raises the "#25081843:IECompatibility() Chart Id..." error. If you would like to resize the chart, please try using the below code. Ref. Code: var chartReference = FusionCharts(sAnimatedChartID); chartReference.width = currWidth; chartReference.height = currHeight; chartReference.resizeTo(currWidth, currHeight); Similar demo link: http://docs.fusioncharts.com/charts/Code/JavaScript/Basics/ChangingChartProperties/Resize_chart_using_pixel_values.html