Search found 16 matches
- Fri May 25, 2012 4:48 pm
- Forum: JFreeChart
- Topic: ToolTips No Longer Work.
- Replies: 2
- Views: 3325
Re: ToolTips No Longer Work.
I appreciate the help. I am finally back to working on this area after several overrides... I got these working with the tool tip generator. I was trying to use HTML in the return string to change the looks of the tooltip, but most everything seems to be ignored (I can bold the text). I can't change...
- Tue Feb 14, 2012 3:43 pm
- Forum: JFreeChart
- Topic: ToolTips No Longer Work.
- Replies: 2
- Views: 3325
ToolTips No Longer Work.
Morning, About two updates ago, I was able to hover the mouse over a trending line and it would show the value in a tooltip. When I went to version 13, it stopped working... I just updated to 14 and still no luck. I have found a post relating to this, but maybe the API has changed. I have worked wit...
- Wed Sep 16, 2009 1:05 pm
- Forum: JFreeChart
- Topic: Line chart with different thickness
- Replies: 4
- Views: 10650
Re: Line chart with different thickness
Morning, I also create and modify my chart on the fly... I pass a vector of objects in and build the set of TimeSeries for that vector like this... private void setTimeSeries() { for (int i = 0; i < legends.size(); i++) { TagLegend legend = (TagLegend) legends.elementAt(i); String tagname = legend.g...
- Tue Sep 15, 2009 8:47 pm
- Forum: JFreeChart
- Topic: TimeSeries Chart - Using the panning option.
- Replies: 0
- Views: 1788
TimeSeries Chart - Using the panning option.
I turned on panning, but when I pan to the right (to see data to the left that has scrolled off), the data is gone... I set removeAgedItems to false and am not setting a max item age.
Thank you,
Andy
Thank you,
Andy
- Tue Sep 15, 2009 8:44 pm
- Forum: JFreeChart
- Topic: TimeSeries Chart - Graphing issue.
- Replies: 3
- Views: 3993
Re: TimeSeries Chart - Graphing issue.
... for some reason, if I clear each time series, I don't see the issue... TimeSeriesCollection ts = (TimeSeriesCollection) chartPane.getChart().getXYPlot().getDataset(0); List<TimeSeries> series = ts.getSeries(); int incr = 0; for ( TimeSeries serie : series ) { ts.getSeries(incr).clear(); incr++; ...
- Tue Sep 15, 2009 7:51 pm
- Forum: JFreeChart
- Topic: TimeSeries Chart - Graphing issue.
- Replies: 3
- Views: 3993
Re: TimeSeries Chart - Graphing issue.
... I have tried to set the autoscroll, with no avail. It seems to happen when I set the 'SetMaxumumItemCount()'. I am using a Millisecond period... Also, I am on version 13, the latest).
Any help would be apprecited...
Andy
Any help would be apprecited...
Andy
- Tue Sep 15, 2009 7:48 pm
- Forum: JFreeChart
- Topic: Line chart with different thickness
- Replies: 4
- Views: 10650
Re: Line chart with different thickness
Afternoon,
Here is a code snippet...
chartPane.getChart().getXYPlot().getRenderer().setSeriesStroke(i, new BasicStroke(2.0f));
Andy
Here is a code snippet...
chartPane.getChart().getXYPlot().getRenderer().setSeriesStroke(i, new BasicStroke(2.0f));
Andy
- Tue Sep 15, 2009 12:52 pm
- Forum: JFreeChart
- Topic: TimeSeries Chart - Graphing issue.
- Replies: 3
- Views: 3993
TimeSeries Chart - Graphing issue.
Morning, I am having an issue with my time series chart. I want it to take in x number of samples and the chart to start scrolling. I set the max number of samples, but it seems to take that number of samples and then instead of the graph scrolling, the graph lines get smaller and smaller... they st...
- Fri Jun 26, 2009 3:04 pm
- Forum: JFreeChart - Stockmarket
- Topic: IndexOutOfBoundsException
- Replies: 5
- Views: 22824
Re: IndexOutOfBoundsException
Ah, my bad... I apologize. Ok, I will implement the change. Thank you for your help.
- Fri Jun 26, 2009 2:41 pm
- Forum: JFreeChart - Stockmarket
- Topic: IndexOutOfBoundsException
- Replies: 5
- Views: 22824
Re: IndexOutOfBoundsException
I currently do not have the 'actionPerformed' method implemented... and don't see where I can add an action listener to the chart. I am currently running jfreechart-1.0.9, is that why?
- Fri Jun 26, 2009 1:50 pm
- Forum: JFreeChart - Stockmarket
- Topic: IndexOutOfBoundsException
- Replies: 5
- Views: 22824
Re: IndexOutOfBoundsException
I am seeing the same thing... except that I am not running any modified versions. Exception in thread "AWT-EventQueue-0" java.lang.IndexOutOfBoundsException: Index: 299, Size: 299 at java.util.ArrayList.RangeCheck(ArrayList.java:547) at java.util.ArrayList.get(ArrayList.java:322) at org.jfree.data.t...
- Tue Apr 07, 2009 4:24 pm
- Forum: JFreeChart
- Topic: Chart Properties - Stroke Selection
- Replies: 2
- Views: 2933
Re: Chart Properties - Stroke Selection
Ok, I will watch for it in future releases, thank you.artipton wrote:...
I also see this on the lasest versions of the jfreechart and jcommon jars.
...
- Mon Apr 06, 2009 9:14 pm
- Forum: JFreeChart
- Topic: Chart Properties - Stroke Selection
- Replies: 2
- Views: 2933
Chart Properties - Stroke Selection
Hello All, Searching through the forum, I found an issue (thread - 'a possible bug') that was close (and part of the issue) that I am seeing, but I didn't see one that addressed the issue I am having. Any help would be appreciated. In the chart properties, go to 'Plot', 'Appearance', and 'Select...'...
- Tue Mar 03, 2009 11:03 pm
- Forum: JFreeChart
- Topic: Removing Chart Properties Options.
- Replies: 3
- Views: 3615
Re: Removing Chart Properties Options.
I downloaded the source, modified it, and re-compiled it. Thank you. I didn't want to have to do that becuase it causes more maintenance with staying up-to-date, but it solved my problem. Any idea with those might be implemented?
Thank you again for you help,
Andy
Thank you again for you help,
Andy
- Mon Mar 02, 2009 10:03 pm
- Forum: JFreeChart
- Topic: Removing Chart Properties Options.
- Replies: 3
- Views: 3615
Removing Chart Properties Options.
Afternoon All,
If I understand correctly, the options under the "Other" tab on the chart properties are not all currently implemented. Is there a way to remove the "Series" options from this tab?
Thank you,
Andy
If I understand correctly, the options under the "Other" tab on the chart properties are not all currently implemented. Is there a way to remove the "Series" options from this tab?
Thank you,
Andy