Search the Community

Showing results for tags 'linked charts'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Company Forums
    • Company News
  • Product Forums
    • FusionCharts XT
    • FusionWidgets XT
    • PowerCharts XT
    • FusionMaps XT
    • Collabion Charts for SharePoint
    • jQuery Plugin for FusionCharts
    • AngularJS plugin
    • ReactJS plugin
  • General Forums
    • FusionCharts Jobs and Consultation
    • FusionLounge

Found 3 results

  1. Year To Quarter Drill Down working however Quarter to Month only working for last quarter not all quarters I have created a drill down chart using Fusion Chart(using a demo on its website), using PHP, MySQL, this is running well, Year to Quarter part is working well ever Quarter to Month part for last quarter is working well, rest all Quarters to Month part of the chart not working I used below link for help http://www.fusioncharts.com/dev/using-with-server-side-languages/tutorials/drill-down-charts-using-php-mysql.html
  2. I am building xml on the fly and passing it to the rendering function. When I add a link in the xml, I get an Invalid Data message. I have already ensured that the Flash security settings are correct and tried changing the ' to quot; . Here is the xml that is being passed to rendering function: "<chart caption='Incidents in the Last 30 Days' xAxisName='Date' yAxisName='# of Incidents' showValues='1' showLabels='0' > <set label='2014-01-02' value='2' link='JavaScript: isJavaScriptCall=true; ShowDrillDownChart('2014-01-02',1);' /> <set label='2014-01-03' value='1' link='JavaScript: isJavaScriptCall=true; ShowDrillDownChart('2014-01-03',1);' /> <set label='2014-01-04' value='1' link='JavaScript: isJavaScriptCall=true; ShowDrillDownChart('2014-01-04',1);' /> <set label='2014-01-05' value='0' link='JavaScript: isJavaScriptCall=true; ShowDrillDownChart('2014-01-05',1);' /> <set label='2014-01-06' value='0' link='JavaScript: isJavaScriptCall=true; ShowDrillDownChart('2014-01-06',1);' /> <set label='2014-01-07' value='0' link='JavaScript: isJavaScriptCall=true; ShowDrillDownChart('2014-01-07',1);' /> <set label='2014-01-08' value='0' link='JavaScript: isJavaScriptCall=true; ShowDrillDownChart('2014-01-08',1);' /> <set label='2014-01-09' value='0' link='JavaScript: isJavaScriptCall=true; ShowDrillDownChart('2014-01-09',1);' /> <set label='2014-01-10' value='0' link='JavaScript: isJavaScriptCall=true; ShowDrillDownChart('2014-01-10',1);' /> </chart>" I am using FusionCharts version 3.3 on my local machine.
  3. Hi! I'm have created multilevel linkedchart. Something quite similar to this. I've got that working but now I want to display more information as I am drilling down. Using the provided example, say I drill down on Year 2004, it will show me the quartley breakdown of 2004 in my child chart but now I want to show another grid/table that shows more relevant information related with year 2004. Maybe something like a table of top 10 sales people and their deparment information. And if you go back and drill down on 2005, the grid will change to 2005's information. I thought a way of doing this while keeping everything on one page and have the chart displaying in one frame was to have hidden variable or manually set the child chart ids that I can use to fetch the other relevant information inside the chart property for each child chart. I was wondering if there is away of putting hidden variables in the chart that I can access or setting the id of the child chart? Thank you