No, such a feature is not available.
Check my entry in the faq.
Search found 1634 matches
- Tue Dec 04, 2018 2:16 pm
- Forum: JFreeChart
- Topic: Category Chart DomainAxis Automatic Adjust??
- Replies: 2
- Views: 10852
- Thu Aug 09, 2018 12:03 pm
- Forum: JFreeChart
- Topic: @admins: When is spam spam?
- Replies: 1
- Views: 9071
@admins: When is spam spam?
Hi,
it seems that there is an increasing rate of meaningless posts (very general topic, such as "need help" or "I have a question", and no more than 1-2 sentences with very general content). Is it ok to treat those posts as spam, and delete them together with the user?
it seems that there is an increasing rate of meaningless posts (very general topic, such as "need help" or "I have a question", and no more than 1-2 sentences with very general content). Is it ok to treat those posts as spam, and delete them together with the user?
- Thu Jun 21, 2018 5:52 pm
- Forum: JFreeChart
- Topic: Can you help me?
- Replies: 0
- Views: 7665
Re: Can you help me?
How to get input from a user is certainly not a JFreeChart specific question. How do you want to getthe input? gui, web, input prompt at the console,...?
- Thu Jun 21, 2018 5:49 pm
- Forum: JFreeChart
- Topic: Multiply Axes?
- Replies: 1
- Views: 7045
Re: Multiply Axes?
That could be a bug in how JFreeChart handles the panning. When the mouse is moved up, the axis range is shifted to lower values, which, for an inverted axis, means that the plot is moving down. I wil have a look at that issue and see whether I can provide a patch. Which version of JFreeChart are yo...
- Thu Jun 21, 2018 5:44 pm
- Forum: JFreeChart
- Topic: help me
- Replies: 0
- Views: 7530
Re: help me
How is your chart currently looking, and how would you like to to look?
- Thu Jun 21, 2018 5:35 pm
- Forum: JFreeChart
- Topic: hi guy,i have a question,please help me!
- Replies: 0
- Views: 7485
Re: hi guy,i have a question,please help me!
Its hard to understand what you are really asking. I guess that you need to call
Code: Select all
DateAxis.setDateFormatOverride(formatter);
- Thu Jun 21, 2018 5:33 pm
- Forum: JFreeChart
- Topic: How to?
- Replies: 0
- Views: 7353
Re: How to?
I would rather look at the code and see whether you have too many dataset or other changes going on.
- Thu Jun 21, 2018 5:32 pm
- Forum: JFreeChart
- Topic: HI GUYS, I HAVE A QUESTION.. NEED HELP?
- Replies: 1
- Views: 6579
Re: HI GUYS, I HAVE A QUESTION.. NEED HELP?
I can't see the image. But the idea of overwriting drawItem sounds ok. You could use most of the existing code. In addition, you need to check whether the series that is currently being drawn is the last series that the plot has, and if so, call drawItemLabel multiple times using all available serie...
- Thu Jun 21, 2018 5:26 pm
- Forum: JFreeChart
- Topic: Need help?
- Replies: 1
- Views: 6278
Re: Need help?
Call
on the axis in question. Both XYPlot and CategoryPlot have this method implemented.
Code: Select all
setRangeAxisLocation(int index, AxisLocation.BOTTOM_OR_LEFT)
- Thu Jun 21, 2018 5:23 pm
- Forum: JFreeChart
- Topic: I want to ask a question
- Replies: 0
- Views: 7404
Re: I want to ask a question
I assume that your x axis is a NumberAxis. Call
Code: Select all
NumberAxis.setAutoRangeIncludesZero(false)
- Sun Apr 29, 2018 5:54 pm
- Forum: JFreeChart
- Topic: Choosing wich XYDataItem to print
- Replies: 1
- Views: 7153
Re: Choosing wich XYDataItem to print
If you want to quickly plot a large number of data points as a line chart, look at the SmaplingXYLineRenderer.
- Tue Jan 23, 2018 3:23 pm
- Forum: JFreeChart
- Topic: JFreeChart line not displayed correctly
- Replies: 1
- Views: 6930
Re: JFreeChart line not displayed correctly
Use the XYSeries constructor that accepts a boolean parameter and set that to "false".
- Mon Jan 08, 2018 7:14 pm
- Forum: JFreeChart
- Topic: Tooltips for Pie Chart as Annotation?
- Replies: 2
- Views: 10551
Re: Tooltips for Pie Chart as Annotation?
During rendering, an XYDrawableAnnotation simply adds an instance of XYAnnotationEntity to the list of entities stored in the ChartRenderingInfo which is the parent of PlotRenderingInfo instance that is used ass parameter for the addEntity-method. The XYAnnotationEntity just contains a shape, a rend...
- Mon Jan 08, 2018 4:49 pm
- Forum: JFreeChart
- Topic: Multiple Sorted Series with String Labels on Domain
- Replies: 3
- Views: 12428
Re: Multiple Sorted Series with String Labels on Domain
if you need to show the street names in a particular order, then simply add the the categories in the same order. For example:
dataset.addValue(speedForBrown, "Speed", "Brown");
dataset.addValue(speedForAsh, "Speed", "Ash");
and so on.
dataset.addValue(speedForBrown, "Speed", "Brown");
dataset.addValue(speedForAsh, "Speed", "Ash");
and so on.
- Wed Dec 20, 2017 8:24 pm
- Forum: JFreeChart
- Topic: Multiple Sorted Series with String Labels on Domain
- Replies: 3
- Views: 12428
Re: Multiple Sorted Series with String Labels on Domain
One of your problems seems to be the category order that you see in a CategoryPlot. In short: the categories are not ordered by default. The categories should appear along the CategoryAxis in the order in which the categories were added to the dataset, regardless of the type of Comparable. In the ab...