i am new to Jfreechart,
I have a histogram with me and points that will make a trend line on the Histogram.
But i don't know how to overlay each other in a single plot.
can any body give any idea ??
Search found 8 matches
- Wed Aug 12, 2009 8:24 am
- Forum: JFreeChart
- Topic: How To add A trendline to a histogram ?
- Replies: 0
- Views: 2045
- Fri Jul 10, 2009 11:02 am
- Forum: JFreeChart
- Topic: How to put a Trendline on a Histogram ?
- Replies: 1
- Views: 2437
How to put a Trendline on a Histogram ?
I m doing histograms by using the following code SimpleHistogramDataset dataset = new SimpleHistogramDataset("Series 1"); SimpleHistogramBin bin1 = new SimpleHistogramBin(5.2756, 10.2756, true, false); SimpleHistogramBin bin2 = new SimpleHistogramBin(10.2756, 15.2756, true, false); SimpleHistogramBi...
- Mon May 18, 2009 5:07 pm
- Forum: JFreeChart
- Topic: How to fix the X axis As Integer ?
- Replies: 2
- Views: 5856
How to fix the X axis As Integer ?
In My Project There are two Requirement
How to fix the X axis As Integer ?
How can i show the any perticular axis value at the data point in A XYLine Chart ?
How to fix the X axis As Integer ?
How can i show the any perticular axis value at the data point in A XYLine Chart ?
- Mon May 18, 2009 1:13 pm
- Forum: JFreeChart
- Topic: Creating Curves based on Data Points
- Replies: 2
- Views: 3848
Re: Creating Curves based on Data Points
The Problem of creating XYSpline Chart is Using CreateChartfactory, i cant have a chart Object where tool tip will be true ,So even if Using XYSplinerenderer i can draw splines but unable to enable tooltip.Can any body suggest any solution for the same. the procedure i am following is as below publi...
- Mon May 18, 2009 7:30 am
- Forum: JFreeChart
- Topic: Creating Curves based on Data Points
- Replies: 2
- Views: 3848
Creating Curves based on Data Points
Actually I am having a number of series points based on which i am doing XYLine Charts ,But i have a requirement that
in some plots will be curves rather than lines joining the data points.
How To Do It ?
in some plots will be curves rather than lines joining the data points.
How To Do It ?
- Fri May 15, 2009 4:37 pm
- Forum: JFreeChart
- Topic: How to highlight The dataPoints Of A series ?
- Replies: 4
- Views: 6837
Re: How to highlight The dataPoints Of A series ?
...just re-read your post. Just in case you mean that you want to change every single point in a series once you select only one of them, the easiest way to accomplish this is to reset the parameters of the actual series renderer such as: renderer.setSeriesShape renderer.setSeriesPaint I guess it w...
- Fri May 15, 2009 4:34 pm
- Forum: JFreeChart
- Topic: How to highlight The dataPoints Of A series ?
- Replies: 4
- Views: 6837
Re: How to highlight The dataPoints Of A series ?
There is no way to do this automatically, the chart does not supply this exact functionality by default. The only way to do this is to identify the x, y values from the mouse event and manually draw a XYShapeAnnotation as a circle (or another shape) around each point you want to highlight. This of ...
- Fri May 15, 2009 1:26 pm
- Forum: JFreeChart
- Topic: How to highlight The dataPoints Of A series ?
- Replies: 4
- Views: 6837
How to highlight The dataPoints Of A series ?
I am ploting XY Series plots in a JSp page ,Now i am able to use the tool tip feature of
JFreeChart.Now i want to highlight all the data points of a series once any of the points of the series is clicked
How to do this can any one suggest ?
Thanks in Advance
JFreeChart.Now i want to highlight all the data points of a series once any of the points of the series is clicked
How to do this can any one suggest ?
Thanks in Advance