Search found 12 matches

by ccapano
Fri Jun 30, 2006 1:55 pm
Forum: JFreeChart
Topic: HeatMap Chart
Replies: 8
Views: 7699

I actually did not run into that thread, but that is close to what i am looking for and probably acceptable.

I have a mock up of what I need to create but I lack a server to host the image on ... so I can email it to whoever if anyone want to see.

It's basically a grid-like heatmap
by ccapano
Thu Jun 29, 2006 7:56 pm
Forum: JFreeChart
Topic: HeatMap Chart
Replies: 8
Views: 7699

HeatMap Chart

I've been reading the forums and I see that there is no support for a heatmap currently. I also looked for the countour chart that is mentioned however i do not see it in the demo.

Is it possible to make a heatmap with jfreechart?
by ccapano
Fri May 19, 2006 12:41 pm
Forum: JFreeChart
Topic: Pie Chart Label Backgrounds
Replies: 3
Views: 4495

Thanks, thats what I was thinking would have to be done
by ccapano
Thu May 18, 2006 8:54 pm
Forum: JFreeChart
Topic: Pie Chart Label Backgrounds
Replies: 3
Views: 4495

What I would like to do is this:

piePlot.setLabelBackgroundPaint(Color.CYAN);

Figure out a way to be able to set this paint to be the color of the series the label is for.
by ccapano
Thu May 18, 2006 3:48 pm
Forum: JFreeChart
Topic: Pie Chart Label Backgrounds
Replies: 3
Views: 4495

Pie Chart Label Backgrounds

Is there a way I can make the Pie Chart Labels use the same background color as the Series color?
by ccapano
Wed May 03, 2006 12:29 pm
Forum: JFreeChart
Topic: Displaying more datapoints than tick marks in a line graph
Replies: 4
Views: 5059

Line Chart returns a Category Plot, is there a way to conver this to an XY? Simply calling chart.getXYPlot returns a class cast exception
by ccapano
Tue May 02, 2006 5:19 pm
Forum: JFreeChart
Topic: Displaying more datapoints than tick marks in a line graph
Replies: 4
Views: 5059

I am using this Chart: ChartFactory.createLineChart3D

and a DefaultCategoryDataset

with a CategoryPlot
by ccapano
Tue May 02, 2006 3:45 pm
Forum: JFreeChart
Topic: Displaying more datapoints than tick marks in a line graph
Replies: 4
Views: 5059

Displaying more datapoints than tick marks in a line graph

Is there a way I can display X amount of datapoints and have the x-axis only draw a tick mark at specified intervals

(example: X tick marks are every 5, but display a datapoint for every 1)
by ccapano
Tue May 02, 2006 3:44 pm
Forum: JFreeChart
Topic: Series break in a line chart
Replies: 4
Views: 8784

Series break in a line chart

Is there a way I can make a series break in a line chart (not connect the data points at certain times) ... Passing in Double.NaN causes Java2D problems.

Thanks
by ccapano
Fri Sep 30, 2005 4:26 am
Forum: JFreeChart
Topic: How can I change the CategoryLabel into a small size font?
Replies: 3
Views: 4385

How did you get the x axis labels to be on an angle?
by ccapano
Fri Sep 30, 2005 3:44 am
Forum: JFreeChart
Topic: Display "Total" on a stacked bar chart
Replies: 0
Views: 2238

Display "Total" on a stacked bar chart

I currently have a stacked bar chart with x sections on each bar. I have each individual section displaying the value by using: // disable bar outlines... BarRenderer renderer = (BarRenderer) barPlot.getRenderer(); renderer.setDrawBarOutline(false); renderer.setItemLabelsVisible(true); CategoryLabel...
by ccapano
Mon Sep 12, 2005 9:25 pm
Forum: JFreeChart
Topic: Pie Chart Customizing based on Mouse Location
Replies: 0
Views: 1691

Pie Chart Customizing based on Mouse Location

Is it possible to do the following when the mouse has been moved? When the mouse hovers over a legend item, explode the corresponding section of the pie chart. Also, when the mouse hovers over a section of the pie chart, explode that section?? If this is not possible ... is there a way to change the...