1. jFreeChart: How to hide items from legend? stackoverflow.comI need to hide every second/third/forth item from the legend. IS there a way to achieve this in jFreeChart? thanks! |
2. Hide legend jfree.org |
3. Hide the legend jfree.org |
4. Showing/hiding legends jfree.org |
5. Hiding the legend jfree.org |
6. Hiding Duplicate Legend Data jfree.orgI'm creating a combined domain chart (two XY plots sharing a common X axis). Each plot will have data series that are named for each of the IP TOS values (0 - 7). I want to reuse the series colors between the top and bottom plots - this way TOS 0 is the same color on both charts, etc. I'd like ... |
7. Selectively hiding legends jfree.orgHow can the legend be selectively hidden? I have a graph where i plot the same series as bar and as area chart, since both the series are the same i dont want the second series legend to show up is there a way we can make the legend of the second series disappear? Here is the key elements in my ... |
8. show and hide the legend in a JFreeChart jfree.orgI do not know of any straightforward way to implement this functionality with the current JFreeChart API. I implemented an easy solution for my local JFreeChart installation: I have added a "visible" flag to the org.jfree.chart.title.Title class with setters and getters and then modified the drawTitle method of JFreeChart to directly return null is Title.isVisible() returns false (added one line around ... |