MX Dynamic Charts Forum :: Monthly Charts - How?
This thread was displayed: 347 times
Starting with 17th May 2007, Adobe Systems will stop offering support for any version of the discontinued InterAKT products. As a result, we will not answer to new support incidents starting with May 17th, 2007. Pending support incidents will still be followed in order to be closed. The product forums will remain open and be transformed in user-to-user forums. The general forums will be made read-only and not allow new posts or comments.
For more information about the affected products visit: www.interaktonline.com/Support/
morrell aberdeen
06-27-2006 21:28:39 GMT +2
|
I want to allow persons to enter data on a monthly basis using a standard form and have charts automatically generated from that data.
Each gropu entering data should be able to view their respective charts by month. In other words, I should be able to select a particular month of a year and have the charts displayed only for that month.
I have followed the tutorial that came with the purchase of dynamic charts. How do I allow the charts to be displayed by having a user choose the month?
|
|
|
Razvan Racasanu[InterAKT]
06-29-2006 14:06:03 GMT +2
|
Hello,
To be able to display only the data from a certain month, all you have to do is to filter the recordset that you created for the chart. You can send to the page the start date and end date for a time frame and filter the recordset based on them like this:
SELECT .... WHERE dateField BETWEEN param1 AND param2
where param1 and param2 should be set with the values from the parameters that the page receives (POST or GET).
Regards,
Razvan RACASANU
|
|
|