Hi manjunath,
This error does not seem to be related to ChartDirector. It seems to be a Java compiler generated error. If the error is generated by the compiler, that means the Java code is invalid and cannot be compiled at all. Are you sure your Java code is correct?
The error basically means the Java compiler does not know what is "Date" mean? Would you mind to clarify what is "Date" mean in your code? (Does it mean java.util.Date or java.sql.Date or something else?) Have your imported conflicting Date definitions? If you are using conflicting Date definition, please use the full name (including the package) to avoid the conflict (eg. use java.util.Date, not just Date).
Hope this can help.
Regards
Peter Kwan |