Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on project where we are using jFreeChart. I need to use XYDifferenceRenderer and I need it to display difference graph of two functions. These functions don't need to be defined for all X-values. When these functions are not defined I would like to display nothing. So, the graph would look like there are gaps in it.

Does anyone know how to do something like this? I tried to pass null values to both functions, but it did not work. Do I need to extend XYDifferenceRenderer?

share|improve this question
Please provide an sscce that exhibits the problem you describe. – trashgod Oct 17 '11 at 21:09
trashgod: Imagine you have two discontinuous functions defined in the same intervals and you want to show difference chart of them in these intervals and nothing in the intervals, these functions are not defined. Hopefully I described the problem more clearly. – saric Oct 18 '11 at 5:57
You should include a method to generate representative values of these discontinuous functions in your example. – trashgod Oct 18 '11 at 6:02
For every set of numbers where both functions are defined, you create a new series. That should fake the "funciton not defined" part of it. – Jes Nov 1 '11 at 9:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.