trashgod

Results 70 comments of trashgod

I understand about proprietary fonts: if you can't reproduce the problem without their font, they may need to contact the font vendor. If you can, I'll try your code on...

I only see wrapping, not truncation. A title terminated with `…` suggests checking the `maximumLinesToDisplay` setting. Otherwise, I'm nonplussed; history since 2016 is [here](https://github.com/jfree/jfreechart/blob/master/src/main/java/org/jfree/chart/title/TextTitle.java); previously [here](https://sourceforge.net/p/jfreechart/code/HEAD/tree/trunk/source/org/jfree/chart/title/TextTitle.java).

I see that [JFreeSVG](https://github.com/jfree/jfreesvg#jfreesvg) has [evolved](https://github.com/jfree/jfree-demos#jfree-demos) with recent JFreeChart releases. Might that represent a path forward?

I see that Apache FOP has also evolved in the interim. Can you indicate which version was working with JFreeChart 1.0.17? Does a later vision work with JFreeChart 1.5.3?

In the interim, can you apply bug fix #216 and build like [this](https://stackoverflow.com/a/69653678/230513)?

I've submitted pull request #265 to fix this on the v1.5.x branch. In the interim, you can clone my [repository](https://github.com/trashgod/jfreechart), checkout v1.5.x and build as suggested above. This produces `jfreechart-1.5.4-SNAPSHOT.jar`,...

Looking at the complete example examined [here](https://stackoverflow.com/q/70618914/230513), this might be an artifact of invoking [`setRange()`](https://www.jfree.org/jfreechart/javadoc/org/jfree/chart/axis/ValueAxis.html#setRange(org.jfree.data.Range)): "As a side-effect, the auto-range flag is set to `false`."

I've always found that some combination of labeled `Marker` and/or `Annotation` served. Did you have a particular use case in mind?

I see the same effect with v1.5.3. For reference, ``` import org.jfree.chart.plot.CategoryPlot; import org.jfree.chart.plot.PlotOrientation; … CategoryPlot plot = (CategoryPlot)chart.getPlot(); plot.setOrientation(PlotOrientation.VERTICAL); ```