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

Discovering JFreeChart, I hit a problem using SpiderWebPlot.

This is what I have today

enter image description here

My values are {2, 2, 1.5}

By default max value is set to the max value of my dataset (here 2) but I want to set it to 5 which as you can see it did but it did not draw the lines for the value between 2 and 5.

How can I progamatically draw them ?

UPDATE AFTER COMMENT :

SpiderWebPlot plot = (SpiderWebPlot)chart.getPlot();
plot.setMaxValue(5.00);
plot.setHeadPercent(0.01);

return chart;

I am using JFreeChart through another application that gives me the hand directly on the chart variable. So that the piece of code I introduced.

share|improve this question
Please post an sscce that reproduces the plot shown. – trashgod Apr 1 '11 at 1:44
See also this forum thread that cites a related patch. – trashgod Aug 30 '12 at 13:21

1 Answer

up vote 1 down vote accepted

The lines shown do not appear to be a feature of JFreeChart. This may be an anomaly introduced by whomever extended the code, with which your version should be compared.

share|improve this answer
Thank you for the info. I appreciate. – Spredzy Apr 4 '11 at 7:48

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.