I`ve another question! How can I get my XYLineAnnotation in the Background from my Signal?
Thanks!!!!
Search found 15 matches
- Sun Jan 27, 2008 4:57 pm
- Forum: JFreeChart
- Topic: XYLineAnnotation
- Replies: 2
- Views: 2912
- Thu Nov 08, 2007 3:24 pm
- Forum: JFreeChart
- Topic: XYLineAnnotation
- Replies: 2
- Views: 2912
XYLineAnnotation
Hello!
How can I change color and thickness from a LineAnnotation?
How can I change color and thickness from a LineAnnotation?
- Thu May 17, 2007 5:26 pm
- Forum: JFreeChart
- Topic: axis changed
- Replies: 1
- Views: 2346
axis changed
Hello! When my axis Range is [10.0, 20.0] and I want to change it to [0.0, 10.0] its not possible. The range is [10.0, 20.0] then. I have a CombinedDomainXYPlot and set the axis range: ValueAxis axis = xyplot[0].getDomainAxis(); xMinMax[0] = (0); xMinMax[1] = (10); axis.setLowerBound(xMinMax[0]); ax...
- Wed Apr 18, 2007 2:01 pm
- Forum: JFreeChart
- Topic: Layout problem
- Replies: 2
- Views: 2427
- Tue Apr 17, 2007 11:27 am
- Forum: JFreeChart
- Topic: Layout problem
- Replies: 2
- Views: 2427
Layout problem
Hello!
I have a chart with 4 tabs and in each tab 3 charts.
Now I want to add a toolbars (one in the south and one in the east) on each tab in my chartPanel. How can I do that? Which Layout is the best?
I have a chart with 4 tabs and in each tab 3 charts.
Now I want to add a toolbars (one in the south and one in the east) on each tab in my chartPanel. How can I do that? Which Layout is the best?
- Mon Mar 26, 2007 1:48 pm
- Forum: JFreeChart
- Topic: XYSeries
- Replies: 1
- Views: 3138
XYSeries
Hello! I have a chart with two plots private XYSeriesCollection[] datasets; .... XYSeries channel0 = new XYSeries("Channel 0"); datasets[0] = new XYSeriesCollection (channel0); XYSeries channel1 = new XYSeries("Channel 1"); datasets[1] = new XYSeriesCollection (channel1); but I like more plots. How ...
- Tue Mar 13, 2007 2:57 pm
- Forum: JFreeChart
- Topic: mouse event with combined chart
- Replies: 0
- Views: 1648
mouse event with combined chart
Hello!
I'va a combined chart, and now I want to know on which chart my mouse is clicked.
I use
But it doesn`t work right, I always get the same chart.
How can I solve this problem?
I'va a combined chart, and now I want to know on which chart my mouse is clicked.
I use
Code: Select all
public void chartMouseClicked(ChartMouseEvent event) { Object ev = event.getSource();
How can I solve this problem?
- Thu Feb 22, 2007 1:25 pm
- Forum: JFreeChart
- Topic: Marker Label
- Replies: 1
- Views: 3011
Marker Label
Hello! I use : Marker mark = new ValueMarker(timeevdo/fs); mark.setLabelAnchor(RectangleAnchor.TOP_RIGHT); mark.setLabelFont(new Font("SanSerif", Font.PLAIN,24)); mark.setLabel(fr); plot1.addDomainMarker(mark); And the problem is, the label is not fully displayed. I use JFreechart 1.0.2
- Mon Feb 19, 2007 12:21 pm
- Forum: JFreeChart
- Topic: parameter combineddomainxyplot
- Replies: 0
- Views: 2016
parameter combineddomainxyplot
Hello! I have: public ecgcombined() throws IOException { SUBPLOT_COUNT = ncol; final CombinedDomainXYPlot plot = new CombinedDomainXYPlot(); datasets = new XYSeriesCollection[SUBPLOT_COUNT]; XYSeries channel1 = new XYSeries("Channel 0"); datasets[0] = new XYSeriesCollection (channel1); XYSeries chan...
- Thu Feb 08, 2007 11:00 am
- Forum: JFreeChart
- Topic: Applet combined chart
- Replies: 3
- Views: 8290
What do you mean?
This I don'nt need.
Code: Select all
public void init(){
}
public void start(){
}
public void stop(){
}
public void destroy(){
}
- Tue Feb 06, 2007 2:35 pm
- Forum: JFreeChart
- Topic: Applet combined chart
- Replies: 3
- Views: 8290
Applet combined chart
Hello! Why doesn't work this Applet? import java.awt.BorderLayout; import java.awt.Color; import java.awt.FlowLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.BorderFactory; import javax.swing.JApplet; import javax.swing.JButton; import javax.swing....
- Fri Jan 26, 2007 1:56 pm
- Forum: JFreeChart
- Topic: scrolling
- Replies: 1
- Views: 2381
scrolling
Hello!
I've a problem with my vertical scrollbar. when I zoom vertical and scroll vertical, and then I zoom horizontal, my vertical scrollbar jumps to an false value.
Who can help me?
For the code please contact me.
Thanks!!!
I've a problem with my vertical scrollbar. when I zoom vertical and scroll vertical, and then I zoom horizontal, my vertical scrollbar jumps to an false value.
Who can help me?
For the code please contact me.
Thanks!!!
- Tue Jan 02, 2007 10:33 pm
- Forum: JFreeChart
- Topic: PanScrollZoomDemo
- Replies: 0
- Views: 1723
PanScrollZoomDemo
Hello!
Has anyone a demo for horizontal and vertical scrolling und zooming?
Thanks a lot!!!!!
Has anyone a demo for horizontal and vertical scrolling und zooming?
Thanks a lot!!!!!
- Tue Dec 19, 2006 2:11 pm
- Forum: JFreeChart
- Topic: scrollbar
- Replies: 6
- Views: 12568
scrollbar
Has anyone a code for a horizontal and vertikal scrollbar. I want to scroll my picture in both axis.
Thanks!!!
Thanks!!!
- Tue Nov 21, 2006 10:22 am
- Forum: JFreeChart
- Topic: Problem with time
- Replies: 0
- Views: 1914
Problem with time
Hello! I have a problem with the timeline, I want that the time is shown in seconds, and always starts with 0. This is my code, and the time starts alwas with the systemtime. Please help me! final TimeSeries series = new TimeSeries("Random Data"); Second current = new Second(); System.out.println (c...