|
Regarding Gantt Chart |
Posted by ATUL JINDAL on Aug-08-2009 06:53 |
|
Hello,
We need to change the start dates and end dates of gantt chart by clicking next and previous button. But the bars of the chart goes out of the plotting area. please suggest us to do.
Thanks
|
Re: Regarding Gantt Chart |
Posted by Peter Kwan on Aug-09-2009 12:25 |
|
Hi ATUL,
You may use XYChart.setClipping to clip the chart to the plot area. For example, in PHP:
$c->setClipping();
Hope this can help.
Regards
Peter Kwan |
Re: Regarding Gantt Chart |
Posted by ANAND on Apr-07-2011 19:35 |
|
Hi Peter,
Here again i'm having issue with the gantt chart where i'm displaying the
horizontals with down time specified in it with red marking.But the problem is that the red
mark is displaying out the chart.Green bar for availability is fine.Only the problem is with red
mark.Kindly help me in resoving this issue.Here i'm attaching the image with issue.
|
Re: Regarding Gantt Chart |
Posted by Peter Kwan on Apr-07-2011 23:53 |
|
Hi ANAND,
If you would like to put data outside of your axis range, but you do not want the data to be plotted, you may use XYChart.setClipping to ask ChartDirector to clip the chart to the plot area. For example (in PHP):
$c->setClipping();
If the above still cannot solve the problem, would you mind to inform me of your charting code, so I may know how the red marks are added, and try to reproduce the issue myself?
Regards
Peter Kwan |
Re: Regarding Gantt Chart |
Posted by ANAND on Apr-08-2011 14:27 |
|
Sorry Peter, the problem is actually with the query i have been running for the down time
which i'm displaying using red mark.It is displaying the full length down time but not the
down time within the period.Thanx for your reply. |
|