1. Request for Improvement of SymbolAxis jfree.org |
2. Another question on SymbolAxis jfree.orgsymbol : constructor SymbolAxis (java.lang.String,org.jfree.chart.axis.ValueAxis) location: class org.jfree.chart.axis.SymbolAxis SymbolAxis symbolAxis = new SymbolAxis( XAxisName, XAxisData ); ... |
3. Issue with SymbolAxis jfree.orgHi all, I am trying to change the lables on my rangeAxis in an XY chart. But I can't seem to get the wanted result. The problem lies in the fact that the line on the chart doens't always start at the lowest value. I have values ranging from 17 to 1 (inverted). But not every chart starts at 17. It ... |
4. SymbolAxis limit of 500? jfree.orgI'm a newbie, so please bear with me. I have an XYPlot where I'm setting the Y-axis to a SymbolAxis. The Y-axis has > 500 entries. I do plot.draw(...), send it to a BufferedImage, and finally export it as PNG. In the PNG, all I see is the Name of the axis, but not the entries. Once I limit it to ... |
5. SymbolAxis problem jfree.orgNote the following code Code: Select all double[] values = {10, 11,12,13,14,15,16,17}; dataset.addSeries("H1", values, 5, 10, 20); JFreeChart chart = ChartFactory.createHistogram( ... |
6. Negative tick in SymbolAxis not visible jfree.orgI can't put negative tick "down" to negative zone. Now "down" tick rendering nearby "zero" axis. Now - img70.imageshack.us/img70/2516/graphsz3.png I need - img230.imageshack.us/img230/7919/graph2pt0.png This is my code: Code: Select all public static void main(String[] args) { DifferenceBarRenderer dbr = new DifferenceBarRenderer(); dbr.getItemPaint(0, 0); ... |
7. SymbolAxis - how can I set position of labels? jfree.orghi, i'm creating a scatteredplot which represents distribution of wind-directions. thus my data consists of degrees. my y-axis should look like this: There should be an "N" at value 0, "O" at value 90, "S" at value 180 and "W" at value 270. How can i do this? I tried to use SymbolAxis but i don't know how to assign my ... |
8. SymbolAxis - how can I left align the labels? jfree.org |
9. how to costomize certain label of SymbolAxis? jfree.org |
10. SymbolAxis tick label rotation jfree.orgHi Folks, My intend is to create an XYChart with categorynames on the x-axis instead of numerical values. Therefore, I build up a XYLineChart and gave its inherit XYPlot a SymbolAxis, with the categorystrings, as DomainAxis. I figured out, that method setVerticalTickLabels(true) rotates them by 90 and a customizable angle of the DomainAxislabel is possible. Now want to rotate the single ... |
11. Problem with SymbolAxis jfree.org |