1. Overlapping order with v1.0.0-rc1 and XYSeriesCollection jfree.orgIf I am not mistake, the old version of JFreechart executed the overlapping of the series of a XYDataset following the adding order to the XYSeriesCollection. Now, I am using version 1.0.0-rc1 but the order of overlapping of the series turns to the contrary (the plot of the last one is under the first). How I can change the order of ... |
2. Multi-series Histogram overlapping bins jfree.orgI have developed a multi-series histogram chart for plotting frequencies of numeric data from my application. In some cases, each series contain values in the same bins, resulting in overlaps in which one series's bins obscures others. I successfully used the plot.setForegroundAlpha() to convey the overlap to users. However, this is less than optimal for situations in which there are three ... |
3. ItemLabel overlap in bar3D chart jfree.org |
4. Overlapping symbols in scatter chart jfree.orgI would like to take special action if 2 symbols overlap. For example, if the same exact point appears twice, I would like to make the 2nd symbol translucent or the first symbol twice the normal size. Basically I want both symbols to appear even though they have the same coordinates. How would I go about doing something like that? Thanks. ... |
5. Overlapping text on points jfree.org |
6. charts overlap jfree.orgHi all, I am newbie using jfreechart and I still don't know whether I'll use or not. Can I create overlaped stacked bar charts?? And another question.. For example, In Stacked bar chart demo 1, can I have the same color repeat in the same category?? Thanks for all Best regards Ernesto Festas |
7. Subtask overlapping jfree.orghello I'm using a gantt chart for my application and I have a problem. My chart has many Subtasks (about 150 in each Category) and both of them are overlapping because of their start and end time. Naturaly wenn 2 (or more) subtask overlapping only 1 is visible (the biggest or longest one) Do you have any suggestions how should I ... |
8. Workaround for overlapping labels wanted. jfree.orgFpr horizontal (bar) charts and custom tick label (number) formats, most of my charts result in overlapping tick labels. Especially for smaller charts with a width of 400. Code: Select all /** * This test shows axis labels overlap on horizontal bar charts if a custom label format is used and the ... |
9. Text Position Overlapping jfree.org |
10. BarRenderer3D wrong overlapping ... bug? jfree.orgThanks for the reply, I'll try this on Monday, but I'm skeptic that it works, because you say that these orders are the defaults, it should drawn correctly due to the fact that i did not change the rendering order in my code. I'll tell you on Monday... you are doing a great job, go on Tom |
11. overlapping category. please help me... jfree.org |
12. Line Overlapping jfree.orgWhat do you mean by "next to the other"? Do you mean that you want one line to be drawn not at exactly the correct value but slightly above or below the value? You could also compare your data points and decide whether the series are too close to one another. In this case you could hide one of the series ... |
13. Overlapping of Item labels jfree.org |
14. Avoid to overlap ValueMarker jfree.orgCode: Select all private static ValueMarker createMarker(boolean isMarkerToday, Date dateMarker, String legende){ ValueMarker valueMarker; if(isMarkerToday == true){ Date date = new Date() ; ... |
15. [StackedBar] Labels overlapping jfree.orggreetings again... 2 questions: is possible to link a toolTip with the value for each stack? as appens in a pie chart? is possible to sort the stacked bar depending on the totale value of each stackedbar?... i have order a simple barchart.. but i dont know how to do with a stackedbarchart...... lemme know c ya tnks! |
16. Overlapping Lines jfree.orgHello, I was just wondering about one thing. I have a table with 4 columns, there are 2 pairs of columns that contain identical data. Obviously when drawing the data onto a JFreeChart, one would only see 2 lines because of the overlapping. The thing I was wondering about is whether or not there's a way to make it easier to ... |
17. Label overlapping chart jfree.org |
18. Overlapping annotations jfree.orgXYPointerAnnotation extends XYTextAnnotation which has a property rotationAngle that defines the rotation angle of the text. The default is 0. If you use either 0.5*PI or -1.5*PI, you text will be in vertical orientation. BTW, you could omit the XYPointerAnnotation and only use an XYTextAnnotation. It seems that you are plotting some gas chromatograms. May I ask what software you are ... |
19. DomainGridLine and Axes overlap jfree.org |
20. Avoiding overlapping XYTextAnnotations jfree.orgHello, I've got a chart with a lot of lines and I need to add annotations to those lines. I extend the NumberAxis with its setRange() method to get space for the annotations and then use a self made algorithm to place the annotations in that space. This is how it look like at present: Now I want to use as ... |
21. labels overlap jfree.orglabels overlap by junico Thu Jul 29, 2010 2:29 pm Hi this is my first post on this forum First thanks Dave and jfree chart team for the framework. We have a servlet (deployed on weblogic 10.3) that generates charts based on a URL, and streams the image through the response OutputStream. After somedays running, the charts start to get ... |
22. Customization by overlapping,use of HighLowRenderer ? jfree.org |
23. Candles overlap in the candlestickchart jfree.orgHi All, Is there anyway to make the candles in the candlestickchart not to overlap with each other? I have a lot of data within the chart and want them to fit together nicely. And the gaps between the data are really anonying, is there anyway to turn them off? Thanks and regards, Wtw |
24. TickUnitSource: endless instances to avoid overlapping? jfree.orgCode: Select all TickUnitSource tickUnits = getStandardTickUnits(); DateFormat formatter = getDateFormatOverride(); if (formatter != null) { //custom date format set? ... |