safadig Report post Posted August 30, 2013 I am no developer and must say the amount of support documentation can be overwhelming. I was hoping to get some advice as to which way would be the bets to achieve the following: 1. A Gauge chart that updates with data on daily or weekly basis. 2. The Displayed chart will be for that day and shows a datestamp as to last update date and time. 3. At the same time save an image or have a link to display data from the previous dates when clicked upon in a calendar ( I can use behaviors in DW when clicking on a date in a jquery calendar). 4. Ability to link to another line or bar chart that shows the daily/weekly/monthly pattern... That is my goal..not sure if I can do it myself or will need to have paid support for it..Thanks for the help.. This is my test site: http://www.toledoallergist.com Share this post Link to post Share on other sites
Guest Sashibhusan Report post Posted September 2, 2013 Hi, Welcome to FusionCharts Forum. First of all, you need to know how FusionCharts XT is rendering using our PHP wrapper. The step by step instructions with demo application on "FusionChats XT with PHP" can be found in the blog link: http://blog.fusioncharts.com/2012/03/javascript-charts-in-php-using-fusioncharts-xt-part-1/ Now, as per your requirement, you would need to implement you own PHP code to just update the chart data on daily or weekly basis or by selecting the particular date. For more information on "Providing and updating chart data", please visit the link: http://docs.fusioncharts.com/charts/contents/JavaScript/JS_ChangeData.html Now, to have the functionality of "link to another line or bar chart", you could implement the linked chart feature. For more information on this please visit the link: http://docs.fusioncharts.com/charts/contents/DrillDown/LinkedCharts.html Please go through the steps suggested above and post the queries if any you are facing. Also, you can mail us your issues/queries at <[email protected]>. Hope this helps! Looking forward to your valuable response. Share this post Link to post Share on other sites
safadig Report post Posted April 18, 2014 Is there a correct code for having Columns display different colors based on their value in a PHP Chart? For example: $strXML .= "<set label='".$date."' value='".$ors[1]."' colorRange='(color minValue='0' maxValue='50' code='96C900')(color minValue='51' maxValue='100' code='FFFB14')(color minValue='101' maxValue='900' code='C90000')'/>"; Share this post Link to post Share on other sites
Sanjukta Report post Posted April 19, 2014 I am no developer and must say the amount of support documentation can be overwhelming. I was hoping to get some advice as to which way would be the bets to achieve the following: 1. A Gauge chart that updates with data on daily or weekly basis. 2. The Displayed chart will be for that day and shows a datestamp as to last update date and time. 3. At the same time save an image or have a link to display data from the previous dates when clicked upon in a calendar ( I can use behaviors in DW when clicking on a date in a jquery calendar). 4. Ability to link to another line or bar chart that shows the daily/weekly/monthly pattern... That is my goal..not sure if I can do it myself or will need to have paid support for it..Thanks for the help.. This is my test site: http://www.toledoallergist.com Hi, Please note that we have an elaborate documentation for each product on how to implement various charts and the supported features. You would need to make use of the samples in order to implement it at your end. 1. A Gauge chart that updates with data on daily or weekly basis. >> For the Real time gauge, you can make it real timeme by passing the correct data format. For more details, please refer to the following link. Ref.- http://docs.fusioncharts.com/widgets/Contents/?RealTime/RealTimeDataFormat.html 2. The Displayed chart will be for that day and shows a datestamp as to last update date and time. >> Please note that you would need to update the data everyday by using data updating methods to show the data for the current. You can do this programmatially or manually, as per your requirement, using your own codes. Ref.- http://docs.fusioncharts.com/charts/contents/?JavaScript/JS_ChangeData.html#update 3. At the same time save an image or have a link to display data from the previous dates when clicked upon in a calendar ( I can use behaviors in DW when clicking on a date in a jquery calendar). >> We just provide you with the charts that has the features supported. The implementation specific to your requirements needs to be completely done at your end, as per your requirement using your own codes. 4. Ability to link to another line or bar chart that shows the daily/weekly/monthly pattern >> Please note you can either use the LinkedCharts or simple links for this drill down functionality, as shown here. Ex: http://www.fusioncharts.com/explore/linkedcharts-for-drill-down/ For more details on this, please refer to the following link. Ref.- http://docs.fusioncharts.com/charts/contents/?FirstChart/LinkedCharts.html http://docs.fusioncharts.com/charts/contents/?FirstChart/Drilldown.html Hope this helps. Share this post Link to post Share on other sites